Skip to content

Commit

Permalink
Merge pull request #154 from coliff/dev/coliff/dev-deps-update
Browse files Browse the repository at this point in the history
  • Loading branch information
coliff committed May 2, 2023
2 parents 6695d27 + 69ab4e0 commit e28e942
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 12 deletions.
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"
}
}

0 comments on commit e28e942

Please sign in to comment.