File tree Expand file tree Collapse file tree 3 files changed +15
-12
lines changed Expand file tree Collapse file tree 3 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
build :
9
- runs-on : ubuntu-18.04
9
+ runs-on : ubuntu-latest
10
10
steps :
11
11
- uses : actions/checkout@v3
12
12
- uses : actions/setup-node@v3
13
13
with :
14
14
node-version : 16
15
+ registry-url : ' https://registry.npmjs.org'
15
16
16
17
- run : npm install
17
18
- run : npm run build
@@ -41,13 +42,13 @@ jobs:
41
42
42
43
- name : Create Tag
43
44
id : create_tag
44
- uses : jaywcjlove/create-tag-action@v1.3.7
45
+ uses : jaywcjlove/create-tag-action@main
45
46
with :
46
47
package-path : ./package.json
47
48
48
49
- name : Generate Changelog
49
50
id : changelog
50
- uses : jaywcjlove/changelog-generator@v1.5.7
51
+ uses : jaywcjlove/changelog-generator@main
51
52
with :
52
53
token : ${{ secrets.GITHUB_TOKEN }}
53
54
head-ref : ${{steps.create_tag.outputs.version}}
74
75
75
76
${{ steps.changelog.outputs.changelog }}
76
77
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
+
Original file line number Diff line number Diff line change 7
7
"main" : " ./lib/index.js" ,
8
8
"module" : " ./esm/index.js" ,
9
9
"scripts" : {
10
- "watch" : " tsbb watch" ,
11
- "build" : " tsbb build" ,
10
+ "watch" : " tsbb watch src/*.ts --useBabel " ,
11
+ "build" : " tsbb build src/*.ts --useBabel " ,
12
12
"test" : " rm -rf .parcel-cache && rm -rf dist && node test/index.cjs"
13
13
},
14
14
"keywords" : [
35
35
"devDependencies" : {
36
36
"@parcel/config-default" : " ^2.3.2" ,
37
37
"@parcel/core" : " ^2.3.2" ,
38
- "tsbb" : " 3.7.6 "
38
+ "tsbb" : " ^4.0.5 "
39
39
},
40
40
"dependencies" : {
41
41
"@babel/runtime" : " ^7.16.7" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
3
"module" : " commonjs" ,
4
+ "target" : " ESNext" ,
4
5
"esModuleInterop" : true ,
5
6
"skipLibCheck" : true ,
6
7
"declaration" : true ,
7
- "target" : " es2017" ,
8
8
"noImplicitAny" : true ,
9
9
"resolveJsonModule" : true ,
10
10
"moduleResolution" : " node" ,
You can’t perform that action at this time.
0 commit comments