Skip to content

Commit

Permalink
perf: update dependencies and scripts to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanjones243 committed Aug 23, 2024
1 parent c5940e7 commit f40f971
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 309 deletions.
3 changes: 0 additions & 3 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no-install commitlint --edit "$1"
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

./node_modules/.bin/npm-run-all preCommit test linters postinstall
1 change: 0 additions & 1 deletion demo/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ The auro-select element is a wrapper for auro-dropdown and auro-menu to create a
| Property | Attribute | Type | Default | Description |
|---------------------------------|---------------------------------|-----------|------------------------|--------------------------------------------------|
| [disabled](#disabled) | `disabled` | `Boolean` | | When attribute is present element shows disabled state. |
| [dropdownTag](#dropdownTag) | | `string` | | |
| [error](#error) | `error` | `String` | | When defined, sets persistent validity to `customError` and sets `setCustomValidity` = attribute value. |
| [noCheckmark](#noCheckmark) | `noCheckmark` | `Boolean` | | When true, checkmark on selected option will no longer be present. |
| [noValidate](#noValidate) | `noValidate` | `Boolean` | | If set, disables auto-validation on blur. |
Expand Down
1 change: 0 additions & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ The auro-select element is a wrapper for auro-dropdown and auro-menu to create a
| Property | Attribute | Type | Default | Description |
|---------------------------------|---------------------------------|-----------|------------------------|--------------------------------------------------|
| `disabled` | `disabled` | `Boolean` | | When attribute is present element shows disabled state. |
| `dropdownTag` | | `string` | | |
| `error` | `error` | `String` | | When defined, sets persistent validity to `customError` and sets `setCustomValidity` = attribute value. |
| `noCheckmark` | `noCheckmark` | `Boolean` | | When true, checkmark on selected option will no longer be present. |
| `noValidate` | `noValidate` | `Boolean` | | If set, disables auto-validation on blur. |
Expand Down
48 changes: 24 additions & 24 deletions package-lock.json

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

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
"node": "^18.x || ^20.x"
},
"dependencies": {
"@aurodesignsystem/auro-dropdown": "^3.0.0-beta.2",
"@aurodesignsystem/auro-dropdown": "^3.0.0-beta.3",
"@aurodesignsystem/auro-formvalidation": "^1.0.3",
"@aurodesignsystem/auro-library": "^2.6.3",
"@aurodesignsystem/auro-menu": "^3.12.0-beta.1",
"@aurodesignsystem/auro-menu": "^3.12.0-beta.2",
"chalk": "^5.3.0",
"lit-element": "^4.1.0",
"lit-html": "^3.2.0"
Expand Down Expand Up @@ -145,7 +145,7 @@
"build:ci": "npm-run-all sweep build:release",
"build:api": "wca analyze 'src/auro-select.js' --outFiles docs/api.md",
"build:dev:assets": "npm-run-all build:sass:component postCss:component sass:render build:docs",
"build:docs": "node scripts/generateDocs.mjs",
"build:docs": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/generateDocs.mjs",
"build:sass": "npm-run-all build:sass:component postCss:component sass:render",
"build:sass:component": "sass --no-source-map src:src",
"build:version": "node scripts/version.mjs",
Expand All @@ -157,10 +157,10 @@
"dist:js": "copyfiles -u 1 -V './src/**/*.js' ./dist",
"esLint": "./node_modules/.bin/eslint src/**/*.js --ignore-pattern 'src/**/*Version.js'",
"linters": "npm-run-all scssLint esLint",
"preCommit": "node scripts/pre-commit.mjs",
"postCss:component": "node scripts/postCss.mjs",
"preCommit": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/pre-commit.mjs",
"postCss:component": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/postCss.mjs",
"postinstall": "node packageScripts/postinstall.mjs",
"sass:render": "sass-render src/*.css -t ./scripts/staticStyles-template.js",
"sass:render": "sass-render src/*.css -t ./node_modules/@aurodesignsystem/auro-library/scripts/build/staticStyles-template.js",
"serve": "web-dev-server --open demo/ --node-resolve --watch",
"sweep": "rm -rf ./demo/css ./dist | rm ./src/*.css ./src/*-css.js",
"test": "wtr --coverage",
Expand Down
210 changes: 0 additions & 210 deletions scripts/generateDocs.mjs

This file was deleted.

Loading

0 comments on commit f40f971

Please sign in to comment.