Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
meixg committed Sep 8, 2023
1 parent 47bdb47 commit f290196
Show file tree
Hide file tree
Showing 3 changed files with 868 additions and 414 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
release:
name: Release
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -15,11 +15,14 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install dependencies
run: npm ci
node-version: 20
- uses: pnpm/action-setup@v2
with:
version: latest
run_install: |
- args: [--frozen-lockfile]
- name: Build
run: npm run build
run: pnpm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
45 changes: 23 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "",
"main": "dist/plugin.js",
"scripts": {
"build": "gulp build -f ./gulpfile.ts --require ./.vscode/ts-node.js && tsc --declaration --outDir dist/ --emitDeclarationOnly -p ./src",
"build": "gulp build -f ./gulpfile.ts && tsc --declaration --outDir dist/ --emitDeclarationOnly -p ./src",
"test": "jest",
"semantic-release": "semantic-release"
},
Expand Down Expand Up @@ -33,39 +33,40 @@
}
},
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/eslint-parser": "^7.22.15",
"@babel/eslint-plugin": "^7.22.10",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@babel/preset-env": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@ecomfe/eslint-config": "^7.5.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@types/gulp": "^4.0.7",
"@types/gulp-babel": "^6.1.29",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.4",
"@semantic-release/git": "^10.0.1",
"@types/gulp": "^4.0.13",
"@types/gulp-babel": "^6.1.30",
"@types/hash-sum": "^1.0.0",
"@types/jest": "^26.0.15",
"@types/webpack": "^4.41.24",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"babel-eslint": "^10.0.0",
"babel-loader": "^8.1.0",
"@types/jest": "^26.0.24",
"@types/webpack": "^4.41.33",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"babel-loader": "^8.3.0",
"css-loader": "^6.8.1",
"del": "^6.0.0",
"del": "^6.1.1",
"eslint": "^8.48.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"html-loader": "^4.2.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"less": "^3.12.2",
"less-loader": "^7.0.2",
"lint-staged": "^10.0.0",
"memfs": "^3.2.0",
"san": "~3.11.2",
"less": "^3.13.1",
"less-loader": "^7.3.0",
"lint-staged": "^10.5.4",
"memfs": "^4.2.1",
"san": "~3.11.3",
"san-loader": "^0.3.7",
"san-ssr": "^3.13.3",
"semantic-release": "^17.3.4",
"semantic-release-cli": "^5.4.2",
"semantic-release": "^21.1.1",
"semantic-release-cli": "^5.4.4",
"style-loader": "^2.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
Expand Down
Loading

0 comments on commit f290196

Please sign in to comment.