Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ianrodrigues/hugo-tailwind-journal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Rodrigues <ianrdgs@gmail.com>2019-11-19 21:36:13 +0300
committerGitHub <noreply@github.com>2019-11-19 21:36:13 +0300
commit31043c498319249e241db240e85cc3609ecb5737 (patch)
treef32056d54e7aa9f52e9ed5376850e524f541254f /package.json
parentb1538c8520b5539c0db282c934c3ac668962c287 (diff)
Hugo theme (#1)
Diffstat (limited to 'package.json')
-rw-r--r--package.json6
1 files changed, 2 insertions, 4 deletions
diff --git a/package.json b/package.json
index 7a405cb..86bb50f 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,7 @@
{
"scripts": {
- "serve": "cross-env NODE_ENV=development concurrently \"postcss public/theme.scss -o public/build/theme.css --watch\" \"live-server ./public\"",
- "development": "cross-env NODE_ENV=development postcss public/theme.scss -o public/build/theme.css",
- "production": "cross-env NODE_ENV=production postcss public/theme.scss -o public/build/theme.css"
+ "watch": "cross-env NODE_ENV=development postcss scss/theme.scss -o static/css/theme.css --watch",
+ "build": "cross-env NODE_ENV=production postcss scss/theme.scss -o static/css/theme.css"
},
"dependencies": {
"autoprefixer": "^9.5.1",
@@ -13,7 +12,6 @@
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"cssnano": "^4.1.10",
- "live-server": "^1.2.1",
"postcss-cli": "^6.1.2"
}
}