Skip to content

Commit 45314a4

Browse files
committed
fix: add theme:build script
1 parent 979ea14 commit 45314a4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/RELEASE.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
with:
1616
node-version: "14.x"
1717
- run: npm ci
18+
- run: npm run theme:build
1819
- run: npm run lib:build
1920
- run: npx semantic-release
2021
env:

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vueup/quill",
3-
"version": "0.1.2",
3+
"version": "0.0.0-development",
44
"description": "Quill Editor for Vue 3 plugin or component.",
55
"keywords": [
66
"vue 3 quill plugin",
@@ -57,7 +57,8 @@
5757
"docs:dev": "vitepress dev docs",
5858
"docs:build": "vitepress build docs",
5959
"docs:serve": "vitepress serve docs",
60-
"theme:snow": "stylus -w ./src/assets/snow.styl -o ./src/themes/quill.snow2.css"
60+
"theme:dev": "stylus -w ./src/assets/snow.styl -o ./src/themes/quill.snow.css",
61+
"theme:build": "stylus ./src/assets/snow.styl -o ./src/themes/quill.snow.css"
6162
},
6263
"dependencies": {
6364
"quill": "^1.3.7",

0 commit comments

Comments
 (0)