Compare commits
3 Commits
1d7b8f5868
...
4ebb686b1c
Author | SHA1 | Date |
---|---|---|
Evan Chen | 4ebb686b1c | |
Evan Chen | 4bcce8ddfd | |
Evan Chen | f654cd347c |
|
@ -1 +1,2 @@
|
|||
dist
|
||||
dist
|
||||
node_modules
|
||||
|
|
|
@ -1 +1,4 @@
|
|||
dist
|
||||
dist
|
||||
node_modules
|
||||
public/css/main.css*
|
||||
public/js/main.js*
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"name": "configui",
|
||||
"version": "1.0.0",
|
||||
"description": "a web app to edit and action on update",
|
||||
"scripts": {
|
||||
"build-sass": "sass --style compressed src/main.scss public/css/main.css",
|
||||
"build-js": "parcel build src/main.js --dist-dir public/js",
|
||||
"start":"npm run build-sass && npm run build-js",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git@kumoly.io:tools/configui.git"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"bulma": "^0.9.3",
|
||||
"prismjs": "^1.25.0",
|
||||
"sass": "^1.43.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@parcel/transformer-sass": "^2.0.0",
|
||||
"parcel": "^2.0.0"
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,5 @@
|
|||
import Prism from "prismjs";
|
||||
import "prismjs/plugins/custom-class/prism-custom-class";
|
||||
|
||||
|
||||
Prism.plugins.customClass.map({ number: "prism-number", tag: "prism-tag" });
|
|
@ -0,0 +1,2 @@
|
|||
@charset "utf-8";
|
||||
@import "../node_modules/bulma/bulma.sass";
|
Loading…
Reference in New Issue