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

update dev deps and re-build #154

Merged
merged 1 commit into from
May 2, 2023
Merged
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
8 changes: 8 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"EditorConfig.EditorConfig",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint"
]
}
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
2 changes: 1 addition & 1 deletion css/show-password-toggle.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/show-password-toggle.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/show-password-toggle.min.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@
"build": "npm-run-all css-lint css-compile css-minify js-lint js-minify",
"css": "npm-run-all css-lint css-compile css-minify",
"css-compile": "sass --style expanded --source-map --embed-sources scss:css",
"css-lint": "stylelint \"scss/*.scss\"",
"css-lint": "stylelint \"scss/*.scss\" --fix",
"css-minify": "cleancss -O1 --format breakWith=lf --source-map --source-map-inline-sources --output css/show-password-toggle.min.css css/show-password-toggle.css",
"js-lint": "eslint js/show-password-toggle.js",
"js-lint": "eslint js/show-password-toggle.js --fix",
"js-minify": "terser --ecma 5 --keep-classnames --keep-fnames --output js/show-password-toggle.min.js -- js/show-password-toggle.js",
"test": "npm-run-all css-lint js-lint"
},
"devDependencies": {
"clean-css-cli": "^5.6.1",
"eslint": "^8.39.0",
"npm-run-all": "^4.1.5",
"sass": "^1.58.3",
"stylelint": "14.16.1",
"stylelint-config-twbs-bootstrap": "7.0.0",
"terser": "^5.16.5"
"clean-css-cli": "5.6.2",
"eslint": "8.39.0",
"npm-run-all": "4.1.5",
"sass": "1.62.1",
"stylelint": "15.6.0",
"stylelint-config-twbs-bootstrap": "10.0.0",
"terser": "5.17.1"
}
}