Clean up legacy files, ignore list, files, etc. (#24)
* chore(all): remove unused files * chore(ignore): ignore js builds * chore(js bundles): remove js builds and add env setup scripts * fix(build/template): fix incorrect prod template and add ignores * fix(browser): refine selected status style and small fixes * chore(readme): update readme status
This commit is contained in:
parent
e40878f7be
commit
7d361cdf7c
84 changed files with 62 additions and 8513 deletions
14
package.json
14
package.json
|
@ -1,4 +1,16 @@
|
|||
{
|
||||
"private": true,
|
||||
"workspaces": ["src/client/web"]
|
||||
"workspaces": [
|
||||
"src/client/web"
|
||||
],
|
||||
"scripts": {
|
||||
"dev:setup": "yarn && yarn dev:copy-immutable && yarn dev:copy-react-dom && yarn dev:copy-react",
|
||||
"dev:copy-immutable": "cp node_modules/immutable/dist/immutable.min.js public/static/js",
|
||||
"dev:copy-react-dom": "cp node_modules/react-dom/umd/react-dom.development.js public/static/js",
|
||||
"dev:copy-react": "cp node_modules/react/umd/react.development.js public/static/js",
|
||||
"prod:setup": "yarn && yarn prod:copy-immutable && yarn prod:copy-react-dom && yarn prod:copy-react",
|
||||
"prod:copy-immutable": "cp node_modules/immutable/dist/immutable.min.js public/static/js",
|
||||
"prod:copy-react-dom": "cp node_modules/react-dom/umd/react-dom.production.min.js public/static/js",
|
||||
"prod:copy-react": "cp node_modules/react/umd/react.production.min.js public/static/js"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue