Skip to content

Commit 06a78aa

Browse files
committed
Fix issue with imports
1 parent 1896082 commit 06a78aa

34 files changed

+9
-14
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,30 +14,19 @@ jobs:
1414
- name: Checkout repository
1515
uses: actions/[email protected]
1616

17-
- name: Cache dependencies
18-
uses: actions/[email protected]
19-
with:
20-
path: ./.npm
21-
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
22-
restore-keys: |
23-
${{ runner.os }}-npm-
24-
2517
- name: Setup Node.js
2618
uses: actions/[email protected]
2719
with:
2820
node-version: '14.x'
2921

30-
- name: Install npm dependencies
31-
run: npm ci --prefer-offline --cache=./.npm
32-
33-
- name: Build library
34-
run: npx tsc --outDir .
35-
3622
- name: Set version in package.json
3723
run: npm --no-git-tag-version version ${{ github.event.release.tag_name }}
3824

3925
- name: Set npm credentials
4026
run: npm config set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}
4127

28+
- name: Move files
29+
run: mv src/* .
30+
4231
- name: Publish to npm Registry
4332
run: npm publish --access public

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)