Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update npm dependencies #57

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:

- name: Rebuild the dist/ directory
run: |
npm run build
npm run package
yarn build
yarn package

- name: Compare the expected and actual dist/ directories
run: |
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
- uses: actions/checkout@v4

- run: |
npm install
node --version
- run: |
npm run all
yarn install
- run: |
yarn all
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,21 +86,13 @@ jobs:
Install the dependencies

```bash
// Using yarn
yarn

// Using npm
npm install
```

Run the tests

```bash
// Using yarn
yarn test

// Using npm
npm test
```

# License
Expand Down
44 changes: 22 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,31 +25,31 @@
"author": "Wonderland",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@commitlint/cli": "17.8.0",
"@commitlint/config-conventional": "17.8.0",
"fs-extra": "11.1.1",
"husky": "8.0.3"
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"fs-extra": "11.2.0",
"husky": "9.1.6"
},
"devDependencies": {
"@types/chai": "4.3.5",
"@types/fs-extra": "11.0.1",
"@types/chai": "5.0.0",
"@types/fs-extra": "11.0.4",
"@types/glob": "8.1.0",
"@types/mocha": "10.0.1",
"@types/mock-fs": "4.13.1",
"@types/node": "20.8.6",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.2.0",
"@vercel/ncc": "0.36.1",
"chai": "4.3.7",
"eslint": "8.45.0",
"eslint-plugin-github": "4.6.0",
"eslint-plugin-prettier": "5.0.0",
"mocha": "10.2.0",
"mock-fs": "5.2.0",
"prettier": "3.0.3",
"ts-node": "10.9.1",
"typescript": "5.2.2"
"@types/mocha": "10.0.9",
"@types/mock-fs": "4.13.4",
"@types/node": "22.7.8",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"@vercel/ncc": "0.38.2",
"chai": "5.1.1",
"eslint": "8.57.1",
"eslint-plugin-github": "5.0.2",
"eslint-plugin-prettier": "5.2.1",
"mocha": "10.7.3",
"mock-fs": "5.4.0",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"typescript": "5.6.3"
}
}
Loading
Loading