mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-06-12 13:31:15 +00:00
Restructure the js app (#243)
* prettier * linter * add prettier, and format the code * remove common, merge it with frontend * refactor the app * better lint and code fix * travis for the frontend app * travis build script Signed-off-by: Daniel Maricic <daniel@woss.io> * lint and build * update the README.md Signed-off-by: Daniel Maricic <daniel@woss.io> * change the commands to reflect refactor Signed-off-by: Daniel Maricic <daniel@woss.io> * prettier and tslint are friends Signed-off-by: Daniel Maricic <daniel@woss.io> * code that wasn't linted properly before Signed-off-by: Daniel Maricic <daniel@woss.io> * prettier rc got deleted * workgin on making the travis pass Signed-off-by: Daniel Maricic <daniel@woss.io> * travis build please? Signed-off-by: Daniel Maricic <daniel@woss.io> * update readme.md Signed-off-by: Daniel Maricic <daniel@woss.io> * dockerfile deleted from fronted - out of scope Signed-off-by: Daniel Maricic <daniel@woss.io> * remove Signed-off-by: Daniel Maricic <daniel@woss.io> * tsconfig Signed-off-by: Daniel Maricic <daniel@woss.io> * found the reason why EOL wasn't happening Signed-off-by: Daniel Maricic <daniel@woss.io> * type for the event in the ConnectionInput as suggested * strictnullCheck to true * noImplicitAny * noUnusedParams * AfgHandling * update * fix Location.tsx * Few minor fixes * remove connection input and revert to original * esnext fixes the imports for icons and non default `* as ` * update to the tsconfig.test.json don't use commonjs please * fixed wrong comment for TIMEOUT_BASE * return totem.svg and type decraration of maybe Signed-off-by: Daniel Maricic <daniel@woss.io> Co-authored-by: Will <w.kopp@kigroup.de>
This commit is contained in:
+12
-12
@@ -5,21 +5,21 @@
|
||||
"node": ">=9.5",
|
||||
"yarn": "^1.3.2"
|
||||
},
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
],
|
||||
"resolutions": {
|
||||
"kind-of": ">=6.0.3"
|
||||
},
|
||||
"scripts": {
|
||||
"deploy": "scripts/deploy.sh",
|
||||
"build:all": "scripts/build-all.sh",
|
||||
"check:frontend": "cd packages/frontend; yarn pretty:check",
|
||||
"check:all": "yarn check:common && yarn check:frontend",
|
||||
"start:frontend": "scripts/start-frontend.sh",
|
||||
"build:frontend": "scripts/build-frontend.sh",
|
||||
"build:common": "tsc -p packages/common",
|
||||
"check:common": "tsc -p packages/common --noEmit",
|
||||
"test": "scripts/test.sh"
|
||||
"start": "cd frontend && yarn start",
|
||||
"build": "npm-run-all --parallel build:*",
|
||||
"build:frontend": "cd frontend && yarn build",
|
||||
"test": "npm-run-all --parallel test:*",
|
||||
"test:frontend": "cd frontend && yarn test",
|
||||
"test:backend": "cd backend && cargo test",
|
||||
"check": "yarn pretty:check",
|
||||
"check:frontend": "cd frontend && yarn pretty:check",
|
||||
"check:backend": "cd backend && cargo check"
|
||||
},
|
||||
"devDependencies": {
|
||||
"npm-run-all": "^4.1.5"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user