Skip to content

Commit d8bcf4a

Browse files
authored
Merge pull request #163 from Lightning-Flow-Scanner/fix-bad-types-on-runtime
fix: bad types on runtime for browsers
2 parents bab12e1 + 989a6ae commit d8bcf4a

File tree

12 files changed

+116
-164
lines changed

12 files changed

+116
-164
lines changed

.github/workflows/deploy-BETA.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ jobs:
4848
run: |
4949
npm ci
5050
npm run build
51-
npm run cp:files
52-
npm run cp:types
51+
npm run tsc:cp:files
5352
- name: Semantic Release Dependency
5453
run: npm install -g @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/git @semantic-release/npm conventional-changelog-conventionalcommits semantic-release
5554
- name: Publish Beta

.github/workflows/deploy-RELEASE.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@ jobs:
4141
run: |
4242
npm ci
4343
npm run build
44-
npm run cp:files
45-
npm run cp:types
46-
cd out/src
44+
npm run tsc:cp:files
45+
cd out
4746
npm publish
4847
env:
4948
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKENX }}

.swcrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"type": "es6",
66
"strictMode": true,
77
"noInterop": false,
8-
"resolveFully": true
8+
"resolveFully": true,
9+
"importInterop": "babel"
910
},
1011
"jsc": {
1112
"externalHelpers": false,

package-lock.json

Lines changed: 89 additions & 135 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)