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

github.com/twbs/bootstrap-npm-starter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2020-04-17 03:58:10 +0300
committerMark Otto <markdotto@gmail.com>2020-04-17 03:58:10 +0300
commit45400a5f2066b44d68d0fc727225243b1210f912 (patch)
treef683c59b66cd4c4e5d52c8472cf4ac062d26209f
parent854c49cfebc14bc8ae291ec6607707dd5e37c6c6 (diff)
few tweaks
-rw-r--r--package.json7
-rw-r--r--readme.md22
2 files changed, 6 insertions, 23 deletions
diff --git a/package.json b/package.json
index aa51f5d..89e603e 100644
--- a/package.json
+++ b/package.json
@@ -11,7 +11,12 @@
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
- "bootstrap"
+ "bootstrap",
+ "sass",
+ "css",
+ "javascript",
+ "starter",
+ "template"
],
"author": "mdo",
"license": "MIT",
diff --git a/readme.md b/readme.md
index 050e0f7..b68bd8c 100644
--- a/readme.md
+++ b/readme.md
@@ -39,25 +39,3 @@ Open <http://localhost:3000> to see the page in action.
## Copyright
&copy; @mdo and licensed MIT.
-
----
-
-### Required
-
-1. `npm init`
-2. `npm i bootstrap jquery popper.js --save`
-3. `npm i node-sass postcss-cli autoprefixer --save-dev` to compile and automatically prefix Sass for browser support
-4. Import Bootstrap into your CSS
-
-### Optional?
-
-1. `npm i nodemon --save-dev` to trigger Sass compiler on save
-2. Move npm scripts to separate files
-
-### Thanks
-https://medium.com/@brianhan/watch-compile-your-sass-with-npm-9ba2b878415b
-
-### Sass
-
-- node-sass compiles
-- sets the `--include-path` option to `node_modules`, so you don't need to include that in your `@import`s.