1
Fork 0

Renamed styles folder to sass

This commit is contained in:
Bauke 2018-06-15 14:41:58 +02:00
parent 225d7fcbf3
commit c758f49daa
No known key found for this signature in database
GPG Key ID: 2E60C4161D9ECCB2
21 changed files with 401 additions and 401 deletions

View File

@ -7,7 +7,7 @@ const path = require('path')
const userCss = require('usercss-creator')
// Define constants
const stylesDirectory = path.join(__dirname, 'styles')
const stylesDirectory = path.join(__dirname, 'sass')
const cssDirectory = path.join(__dirname, 'css')
// Walk recursively through styles directory

View File

@ -7,14 +7,14 @@
},
"license": "MIT",
"scripts": {
"watch": "node-sass -w styles -o temp",
"watch": "node-sass -w sass -o temp",
"release": "yarn lint && yarn build:prod && yarn generate",
"generate": "node generate.js",
"build:dev": "node-sass styles -o temp",
"build:prod": "node-sass styles -o css",
"build:dev": "node-sass sass -o temp",
"build:prod": "node-sass sass -o css -q",
"lint": "yarn lint:js && yarn lint:css",
"lint:js": "eslint . --color",
"lint:css": "stylelint \"styles/**/*.sass\" --color"
"lint:css": "stylelint \"sass/**/*.sass\" --color"
},
"dependencies": {
"klaw-sync": "^4.0.0",

View File

View File