Skip to content

Commit

Permalink
Merge pull request #15 from poirazis/develop
Browse files Browse the repository at this point in the history
v 2.0.6-alpha
  • Loading branch information
poirazis authored Dec 14, 2023
2 parents 8ee8adc + bb39da5 commit 2ee2767
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,21 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
path: ${{ github.workspace }}/bb-component-SuperTableColumn
- uses: actions/checkout@v3
name: Checkout Super Components Shared code repository
with:
repository: poirazis/bb_super_components_shared
path: ${{ github.workspace }}/bb_super_components_shared
ref: main
- uses: actions/setup-node@v1
with:
node-version: 18
- name: Make the production plugin bundle
run: |
cd bb_super_components_shared
yarn
cd ..
cd ../bb-component-SuperTable
release_version=$(cat package.json | jq -r '.version')
echo "RELEASE_VERSION=$release_version" >> $GITHUB_ENV
yarn
Expand All @@ -34,4 +40,4 @@ jobs:
tag_name: v${{ env.RELEASE_VERSION }}
generate_release_notes: true
files: |
dist/*.tar.gz
${{ github.workspace }}/bb-component-SuperTableColumn/dist/*.tar.gz
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
[submodule "bb_super_components_shared"]
path = bb_super_components_shared
url = https://github.com/poirazis/bb_super_components_shared
1 change: 0 additions & 1 deletion bb_super_components_shared
Submodule bb_super_components_shared deleted from 76ba71
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bb-component-SuperTableColumn",
"version": "2.0.5-alpha",
"version": "2.0.6-alpha",
"description": "Customizable columns for the SuperTable Component",
"author": "Michael Poirazi",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/Component.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script>
import { getContext } from "svelte";
import { SuperTableColumn } from "../bb_super_components_shared/src/lib"
import { SuperTableColumn } from "../../bb_super_components_shared/src/lib"
import { findComponentById } from "../lib/builderHelpers"
const { styleable, builderStore, screenStore } = getContext("sdk");
Expand Down

0 comments on commit 2ee2767

Please sign in to comment.