Skip to content
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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,8 @@ jobs:
- name: Check Lint
run: npm run lint

- name: Check CSS Lint
run: npm run lint:css

- name: Check Build
run: npm run dist
12 changes: 0 additions & 12 deletions .stylelintrc

This file was deleted.

165 changes: 144 additions & 21 deletions package-lock.json

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

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dist": "cross-env MINIFY=true webpack --progress",
"ghpages": "npm run preghpages && gh-pages -d gh-pages",
"lint": "npm run lintfile src/",
"lint:css": "stylelint src/css/main.css",
"lint:css": "stylelint src/style/",
"lintfile": "eslint",
"preghpages": "npm run dist && shx rm -rf gh-pages && shx mkdir gh-pages && shx cp -r assets dist examples index.html gh-pages && shx sed -i http://localhost:3333 .. gh-pages/examples/index.html",
"prepare": "husky",
Expand Down Expand Up @@ -55,9 +55,10 @@
"react-test-renderer": "^18.2.0",
"shx": "^0.3.4",
"style-loader": "^3.3.4",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"postcss-styl": "^0.12.3",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1",
"stylelint-order": "^7.0.0",
"stylus": "^0.62.0",
"stylus-loader": "^8.1.0",
"webpack": "^5.91.0",
Expand Down
Loading