File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " topiary-ui" ,
3
- "version" : " 0.0.3 " ,
3
+ "version" : " 0.0.4 " ,
4
4
"description" : " Development repo for the topiary-io admin UI" ,
5
5
"main" : " server.js" ,
6
6
"scripts" : {
7
7
"dev" : " npm run watch & npm run styles & nodemon server.js && fg" ,
8
- "build" : " browserify -t [ babelify --presets es2015 --plugins [mjsx transform-object-rest-spread] ] src/index.js -o bundle.js" ,
8
+ "build" : " browserify -t [ babelify --presets es2015 --plugins [mjsx transform-object-rest-spread] ] src/index.js -o bundle.js && stylus -u jeet src/styles/main.styl -o main.css " ,
9
9
"styles" : " stylus -u jeet -w src/styles/main.styl -o main.css" ,
10
10
"watch" : " watchify -vd -t [ babelify --presets es2015 --plugins [mjsx transform-object-rest-spread] ] -p browserify-hmr src/index.js -o bundle.js" ,
11
11
"test" : " echo \" Error: no test specified\" && exit 1" ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ app.use(express.static("./"))
8
8
9
9
app . use ( "*" , ( req , res , next ) => {
10
10
res . send (
11
- "<!doctype html><meta charset='utf-8'><title>Mithril-Redux</title><link rel='stylesheet' href='/styles .css'><script>window.ADMIN_ROOT=\"/mithril-ui/\"</script><script defer src='/bundle.js'></script><div class='loader'>Loading...</div>"
11
+ "<!doctype html><meta charset='utf-8'><title>Mithril-Redux</title><link rel='stylesheet' href='/main .css'><script>window.ADMIN_ROOT=\"/mithril-ui/\"</script><script defer src='/bundle.js'></script><div class='loader'>Loading...</div>"
12
12
)
13
13
} )
14
14
You can’t perform that action at this time.
0 commit comments