mirror of
https://github.com/anotherlusitano/SpectrumPlus.git
synced 2026-07-22 04:10:27 +00:00
feat: install node-sass, prettier and ignore some files
This commit is contained in:
parent
7d2c5d39bb
commit
cb12223f0d
5 changed files with 1489 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/node_modules
|
||||
7
.prettierignore
Normal file
7
.prettierignore
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Ignore node Modules
|
||||
|
||||
/node_modules
|
||||
|
||||
# Ignore images
|
||||
|
||||
/images
|
||||
6
.prettierrc.json
Normal file
6
.prettierrc.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"tabWidth": 2,
|
||||
"singleQuote": true,
|
||||
"bracketSpacing": true,
|
||||
"parser": "css"
|
||||
}
|
||||
1450
package-lock.json
generated
Normal file
1450
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
25
package.json
Normal file
25
package.json
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"name": "spectrumobsidianstylesheet",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"description": "An Obsidian Theme",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"scss": "npx node-sass --output-style expanded SCSS/Spectrum.scss > development/Spectrum.css"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/Braweria/Spectrum.git"
|
||||
},
|
||||
"author": "Wiktoria Mielcarek",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Braweria/Spectrum/issues"
|
||||
},
|
||||
"homepage": "https://github.com/Braweria/Spectrum#readme",
|
||||
"dependencies": {
|
||||
"node-sass": "^5.0.0",
|
||||
"prettier": "^2.2.1"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue