Skip to content

Commit c0bbe24

Browse files
committed
chore(deps): update dependency tsbb to v4 #17
jaywcjlove/tsbb#439
1 parent f630888 commit c0bbe24

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ on:
66

77
jobs:
88
build:
9-
runs-on: ubuntu-18.04
9+
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
1414
node-version: 16
15+
registry-url: 'https://registry.npmjs.org'
1516

1617
- run: npm install
1718
- run: npm run build
@@ -41,13 +42,13 @@ jobs:
4142

4243
- name: Create Tag
4344
id: create_tag
44-
uses: jaywcjlove/create-tag-action@v1.3.7
45+
uses: jaywcjlove/create-tag-action@main
4546
with:
4647
package-path: ./package.json
4748

4849
- name: Generate Changelog
4950
id: changelog
50-
uses: jaywcjlove/changelog-generator@v1.5.7
51+
uses: jaywcjlove/changelog-generator@main
5152
with:
5253
token: ${{ secrets.GITHUB_TOKEN }}
5354
head-ref: ${{steps.create_tag.outputs.version}}
@@ -74,8 +75,10 @@ jobs:
7475
7576
${{ steps.changelog.outputs.changelog }}
7677
77-
- name: 📦 parcel-transformer-markdown publish to NPM
78-
uses: JS-DevTools/npm-publish@v1
79-
with:
80-
token: ${{ secrets.NPM_TOKEN }}
81-
package: ./package.json
78+
79+
- run: npm publish --access public
80+
name: 📦 parcel-transformer-markdown publish to NPM
81+
continue-on-error: true
82+
env:
83+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
84+

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"main": "./lib/index.js",
88
"module": "./esm/index.js",
99
"scripts": {
10-
"watch": "tsbb watch",
11-
"build": "tsbb build",
10+
"watch": "tsbb watch src/*.ts --useBabel",
11+
"build": "tsbb build src/*.ts --useBabel",
1212
"test": "rm -rf .parcel-cache && rm -rf dist && node test/index.cjs"
1313
},
1414
"keywords": [
@@ -35,7 +35,7 @@
3535
"devDependencies": {
3636
"@parcel/config-default": "^2.3.2",
3737
"@parcel/core": "^2.3.2",
38-
"tsbb": "3.7.6"
38+
"tsbb": "^4.0.5"
3939
},
4040
"dependencies": {
4141
"@babel/runtime": "^7.16.7",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4+
"target": "ESNext",
45
"esModuleInterop": true,
56
"skipLibCheck": true,
67
"declaration": true,
7-
"target": "es2017",
88
"noImplicitAny": true,
99
"resolveJsonModule": true,
1010
"moduleResolution": "node",

0 commit comments

Comments
 (0)