From adf5cc7806b58a163d4aea7516b5230133a6d6c4 Mon Sep 17 00:00:00 2001 From: Lewis Dale Date: Wed, 18 Jan 2023 09:15:29 +0000 Subject: [PATCH] Move source CSS to src directory so it can be excluded from the zip --- .gitignore | 3 ++- package.json | 2 +- {assets/css => src}/cube.css | 0 {assets/css => src}/global.css | 0 {assets/css => src}/styles.css | 0 5 files changed, 3 insertions(+), 2 deletions(-) rename {assets/css => src}/cube.css (100%) rename {assets/css => src}/global.css (100%) rename {assets/css => src}/styles.css (100%) diff --git a/.gitignore b/.gitignore index b512c09..28f1ba7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -node_modules \ No newline at end of file +node_modules +.DS_Store \ No newline at end of file diff --git a/package.json b/package.json index be52a73..78c56bb 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "build:css": "postcss assets/css/styles.css > assets/css/styles.min.css" + "build:css": "postcss src/styles.css > assets/css/styles.min.css" }, "repository": { "type": "git", diff --git a/assets/css/cube.css b/src/cube.css similarity index 100% rename from assets/css/cube.css rename to src/cube.css diff --git a/assets/css/global.css b/src/global.css similarity index 100% rename from assets/css/global.css rename to src/global.css diff --git a/assets/css/styles.css b/src/styles.css similarity index 100% rename from assets/css/styles.css rename to src/styles.css