diff options
| author | mo <mo.khan@gmail.com> | 2018-12-22 10:01:46 -0700 |
|---|---|---|
| committer | mo <mo.khan@gmail.com> | 2018-12-22 10:01:46 -0700 |
| commit | e5699feb49a787172230a91e0dd032fefcea45a8 (patch) | |
| tree | 608c3aac95316ea21816f14f548f5cc1fb981465 | |
| parent | d9bf81f5ad639f06602e6efdfed89bb6d626aa95 (diff) | |
add html page to test changes
| -rw-r--r-- | index.html | 10 | ||||
| -rw-r--r-- | package.json | 5 | ||||
| -rw-r--r-- | scss/_base.scss | 2 |
3 files changed, 15 insertions, 2 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..db94726 --- /dev/null +++ b/index.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="content-type" content="text/html; charset=utf-8" /> + <title></title> + <link rel="stylesheet" href="css/mokha.css" /> + </head> + <body> + </body> +</html> diff --git a/package.json b/package.json index cd3e400..e6bc7b1 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,9 @@ "node-sass": "^4.11.0" }, "scripts": { - "build-sass": "node-sass --output-style expanded --source-map true index.scss css/bulma.css" + "build": "yarn build:clean && yarn build:scss", + "build:clean": "rm -fr css", + "build:scss": "node-sass --output-style expanded --source-map true index.scss css/mokha.css", + "build:watch": "yarn build:scss --watch" } } diff --git a/scss/_base.scss b/scss/_base.scss index 8371917..04e7110 100644 --- a/scss/_base.scss +++ b/scss/_base.scss @@ -1,3 +1,3 @@ body { - background-color: blue; + background-color: pink; } |
