Merge remote-tracking branch 'origin/auto-reload' into dev-merge
Showing
.babelrc
deleted
100644 → 0
.proxyrc.js
0 → 100644
dist/dev/index.html
0 → 100644
dist/js/jquery.js
0 → 100644
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
... | ... | @@ -4,8 +4,10 @@ |
"scripts": { | ||
"build": "spago build", | ||
"bundle": "spago bundle --module Main --outfile dist/bundle.min.js --minify --source-maps", | ||
"css": "$npm_execpath run css-themes", | ||
"css-themes": "$npm_execpath run css-default-theme && $npm_execpath run css-dark-theme && $npm_execpath run css-darkster-theme && $npm_execpath run css-greyson-theme && $npm_execpath run css-herbie-theme && $npm_execpath run css-monotony-theme", | ||
"build-dev": "spago bundle --module Main --outfile dist/bundle.min.js", | ||
"watch": "watchexec -e purs -- npm run build-dev", | ||
"css": "$npm_execpath css-themes", | ||
"css-themes": "$npm_execpath css-default-theme && $npm_execpath css-dark-theme && $npm_execpath css-darkster-theme && $npm_execpath css-greyson-theme && $npm_execpath css-herbie-theme && $npm_execpath css-monotony-theme", | ||
"css-default-theme": "sass src/sass/themes/default.scss:dist/styles/bootstrap-default.css", | ||
"css-dark-theme": "cp node_modules/bootstrap-dark/src/bootstrap-dark.css dist/styles/bootstrap-dark.css", | ||
"css-darkster-theme": "sass src/sass/themes/darkster.scss:dist/styles/bootstrap-darkster.css", | ||
... | ... | @@ -16,7 +18,9 @@ |
"repl": "spago repl", | ||
"server": "serve -l 8008 dist", | ||
"server-ssl": "ssl-serve --ssl dist", | ||
"test": "spago test" | ||
"test": "spago test", | ||
"dev": "concurrently \"npm run watch\" \"npm run serve\" ", | ||
"serve": "npx parcel serve --dist-dir ./dist/dev/bundle ./dist/dev/index.html" | ||
}, | ||
"dependencies": { | ||
"@fontsource/crete-round": "~5.0.12", | ||
... | ... | @@ -32,6 +36,7 @@ |
"bootstrap": "~4.6.0", | ||
"bootstrap-dark": "~1.0.3", | ||
"buffer": "~6.0.3", | ||
"concurrently": "^9.1.0", | ||
"create-react-class": "~15.6.3", | ||
"crypto": "~1.0.1", | ||
"d3": "~7.6.1", | ||
... | ... | @@ -47,6 +52,7 @@ |
"graphql": "~15.6.1", | ||
"graphql-ws": "~5.5.0", | ||
"highlightjs": "~9.16.2", | ||
"http-proxy-middleware": "^3.0.3", | ||
"immer": "~9.0.5", | ||
"isomorphic-unfetch": "~3.1.0", | ||
"markdown-it": "~13.0.1", | ||
... | ... | @@ -70,6 +76,7 @@ |
"@getgauge/cli": "~1.4.0", | ||
"esbuild": "~0.21.1", | ||
"parcel": "~2.8.2", | ||
"process": "^0.11.10", | ||
"react-testing-library": "~8.0.1", | ||
"sass": "~1.77.0", | ||
"serve": "~14.2.3", | ||
... | ... |
Please register or sign in to comment