Skip to content

Commit

Permalink
chore(deps): update dependency tsbb to v4 #17
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Mar 29, 2023
1 parent f630888 commit c0bbe24
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ on:

jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'

- run: npm install
- run: npm run build
Expand Down Expand Up @@ -41,13 +42,13 @@ jobs:

- name: Create Tag
id: create_tag
uses: jaywcjlove/create-tag-action@v1.3.7
uses: jaywcjlove/create-tag-action@main
with:
package-path: ./package.json

- name: Generate Changelog
id: changelog
uses: jaywcjlove/changelog-generator@v1.5.7
uses: jaywcjlove/changelog-generator@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
head-ref: ${{steps.create_tag.outputs.version}}
Expand All @@ -74,8 +75,10 @@ jobs:
${{ steps.changelog.outputs.changelog }}
- name: 📦 parcel-transformer-markdown publish to NPM
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
package: ./package.json
- run: npm publish --access public
name: 📦 parcel-transformer-markdown publish to NPM
continue-on-error: true
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"main": "./lib/index.js",
"module": "./esm/index.js",
"scripts": {
"watch": "tsbb watch",
"build": "tsbb build",
"watch": "tsbb watch src/*.ts --useBabel",
"build": "tsbb build src/*.ts --useBabel",
"test": "rm -rf .parcel-cache && rm -rf dist && node test/index.cjs"
},
"keywords": [
Expand All @@ -35,7 +35,7 @@
"devDependencies": {
"@parcel/config-default": "^2.3.2",
"@parcel/core": "^2.3.2",
"tsbb": "3.7.6"
"tsbb": "^4.0.5"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ESNext",
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true,
"target": "es2017",
"noImplicitAny": true,
"resolveJsonModule": true,
"moduleResolution": "node",
Expand Down

0 comments on commit c0bbe24

Please sign in to comment.