Skip to content

Commit

Permalink
chore(deps): update
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait authored Jan 17, 2024
1 parent 57da672 commit d343ef3
Show file tree
Hide file tree
Showing 23 changed files with 7,022 additions and 16,123 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
cache: "npm"

- name: Install dependencies
run: npm ci
run: npm i

- name: Install webpack ${{ matrix.webpack-version }}
if: matrix.webpack-version != 'latest'
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ coverage
logs
*.log
npm-debug.log*
.cspellcache
.eslintcache
/coverage
/dist
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ type minify =
data: { [file: string]: string },
minimizerOptions: {
[key: string]: any;
}
},
) => {
code: string;
errors?: unknown[] | undefined;
Expand All @@ -313,7 +313,7 @@ type minify =
data: { [file: string]: string },
minimizerOptions: {
[key: string]: any;
}
},
) => {
code: string;
errors?: unknown[] | undefined;
Expand Down
5 changes: 4 additions & 1 deletion lint-staged.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
module.exports = {
"*": ["prettier --write --ignore-unknown", "cspell --no-must-find-files"],
"*": [
"prettier --cache --write --ignore-unknown",
"cspell --cache --no-must-find-files",
],
"*.js": ["eslint --cache --fix"],
};
Loading

0 comments on commit d343ef3

Please sign in to comment.