1
0
mirror of https://github.com/kognise/water.css.git synced 2025-08-11 15:45:15 +02:00

Segment build scripts

This commit is contained in:
Kognise
2019-04-06 08:29:35 -04:00
committed by GitHub
parent 522fd8e41e
commit 24a097d31d

View File

@@ -4,7 +4,9 @@
"description": "A just-add-css collection of styles to make simple websites just a little nicer.",
"main": "index.js",
"scripts": {
"build": "node-sass ./src/water-dark.scss > ./dist/water-dark.css && node-sass ./src/water-light.scss > ./dist/water-light.css"
"build:dark": "node-sass ./src/water-dark.scss > ./dist/water-dark.css",
"build:light": "node-sass ./src/water-light.scss > ./dist/water-light.css",
"build": "yarn build:dark && yarn build:light"
},
"repository": {
"type": "git",
@@ -16,12 +18,12 @@
"simple",
"minimal"
],
"author": "kognise",
"author": "Kognise",
"license": "MIT",
"bugs": {
"url": "https://github.com/kognise/water.css/issues"
},
"homepage": "https://github.com/kognise/water.css#readme",
"homepage": "https://github.com/kognise/water.css",
"devDependencies": {
"node-sass": "^4.11.0"
}