1
0
mirror of https://github.com/kognise/water.css.git synced 2025-08-12 08:04:13 +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.", "description": "A just-add-css collection of styles to make simple websites just a little nicer.",
"main": "index.js", "main": "index.js",
"scripts": { "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": { "repository": {
"type": "git", "type": "git",
@@ -16,12 +18,12 @@
"simple", "simple",
"minimal" "minimal"
], ],
"author": "kognise", "author": "Kognise",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/kognise/water.css/issues" "url": "https://github.com/kognise/water.css/issues"
}, },
"homepage": "https://github.com/kognise/water.css#readme", "homepage": "https://github.com/kognise/water.css",
"devDependencies": { "devDependencies": {
"node-sass": "^4.11.0" "node-sass": "^4.11.0"
} }