Skip to content

Commit

Permalink
fix: missing color-scheme css
Browse files Browse the repository at this point in the history
- color scheme css copy/export fix
  • Loading branch information
uipoet committed Mar 14, 2022
1 parent 82653b7 commit 1fc8c7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: npm ci --ignore-scripts

- name: Build Ninja Kit
run: npm run build
run: npm run build && npm run copy:color-schemes

- name: Release Ninja Kit
run: npx semantic-release
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@
"sideEffects": false,
"scripts": {
"build": "run-p build:**",
"build:color-scheme": "mkdir -p dist/color-scheme && cp src/lib/color-scheme/*.css dist/color-scheme",
"build:lib": "vite build --mode=lib",
"build:types": "tsc --emitDeclarationOnly --project tsconfig-types.json",
"check": "run-p check:**",
"check:config": "prettier --check .",
"check:scripts": "eslint --ext .ts,.tsx .",
"check:types": "tsc --noEmit",
"copy:color-schemes": "mkdir -p dist/color-scheme && cp src/lib/color-scheme/*.css dist/color-scheme",
"extract:color-scheme": "node src/lib/color-scheme/extract.mjs",
"fix": "run-s fix:scripts fix:config",
"fix:config": "prettier --write .",
Expand Down

0 comments on commit 1fc8c7c

Please sign in to comment.