From a546fc731e820ff4dec4909dc8f02fd58998cf8f Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 13 Nov 2016 13:42:22 +0200 Subject: [PATCH] package.json: Add run script for cookieconsent --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c242709..be380d5 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,8 @@ "scripts": { "build:css": "node-sass --output-style compressed source/scss/style.scss static/css/style.css.tmp && cssnano static/css/style.css.tmp static/css/style.css", "build:fonts": "cp node_modules/font-awesome/fonts/* static/fonts", - "build": "npm run build:css && npm run build:fonts && npm run clean", + "build:cookieconsent": "cp node_modules/cookieconsent/build/cookieconsent.min.css static/css && cp node_modules/cookieconsent/build/cookieconsent.min.js static/js", + "build": "npm run build:css && npm run build:fonts && npm run build:cookieconsent && npm run clean", "clean": "rm static/css/style.css.tmp" }, "keywords": "hugo",