-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #573 from dzcode-io/572-delete-server-code-on-data…
…-and-clear-cloud-resources
- Loading branch information
Showing
19 changed files
with
49 additions
and
360 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,17 +44,14 @@ | |
"build:watch": "lerna run build:alone:watch [email protected]/data --include-dependencies --parallel", | ||
"clean": "lerna run clean:alone [email protected]/api --include-dependencies --stream", | ||
"clean:alone": "rimraf dist coverage", | ||
"deploy": "yarn generate:data && rimraf ./firebase/public && cpx -u \"./dist/_data/**/*\" ./firebase/public && cd ./firebase && firebase deploy --only hosting:data.dzcode.io --token \"$FIREBASE_TOKEN\"", | ||
"deploy:stg": "yarn generate:data && rimraf ./firebase/public && cpx -u \"./dist/_data/**/*\" ./firebase/public && cd ./firebase && firebase deploy --only hosting:data.stage.dzcode.io --token \"$FIREBASE_TOKEN\"", | ||
"generate:data": "node dist/build.js", | ||
"lint": "yarn build && yarn lint:alone", | ||
"lint:alone": "yarn lint:eslint . && yarn lint:prettier --check .", | ||
"lint:alone": "yarn lint:eslint . && yarn lint:prettier --check . && yarn lint:tsc && yarn lint:ts-prune", | ||
"lint:eslint": "eslint --config ../packages/tooling/.eslintrc.json --ignore-path ../packages/tooling/.eslintignore --report-unused-disable-directives", | ||
"lint:fix": "yarn build && yarn lint:fix:alone", | ||
"lint:fix:alone": "yarn lint:eslint --fix . && yarn lint:prettier --write .", | ||
"lint:prettier": "prettier --config ../packages/tooling/.prettierrc --ignore-path ../packages/tooling/.prettierignore --loglevel warn", | ||
"start": "node dist/index.js", | ||
"start:dev": "ts-node ../packages/tooling/nodemon.ts @dzcode.io/data && nodemon dist/index.js", | ||
"lint:ts-prune": "ts-prune --error", | ||
"lint:tsc": "tsc --noEmit", | ||
"test": "jest src", | ||
"test:cov": "jest src --coverage", | ||
"test:cov:watch": "jest src --coverage --watchAll", | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,11 +62,11 @@ | |
"dev": "echo \"Please run one of these commands:\\n\\nyarn dev:web\\nyarn dev:mobile\\nyarn dev:all\n\"", | ||
"dev:all": "npm-run-all \"build --include-dependencies {@}\" --parallel \"build:watch --include-dependencies {@}\" \"start:dev {@}\" --", | ||
"dev:api": "yarn dev:all [email protected]/api", | ||
"dev:mobile": "yarn dev:all [email protected]/{mobile,api,data}", | ||
"dev:web": "yarn dev:all [email protected]/{web,api,data}", | ||
"dev:mobile": "yarn dev:all [email protected]/{mobile,api}", | ||
"dev:web": "yarn dev:all [email protected]/{web,api}", | ||
"e2e:all": "npm-run-all \"build --include-dependencies {@}\" --parallel \"build:watch --include-dependencies {@}\" \"start:dev {@}\" \"e2e:dev [email protected]/web\" --", | ||
"e2e:dev": "lerna run e2e:dev --parallel", | ||
"e2e:web": "BROWSER=none yarn e2e:all [email protected]/{web,api,data}", | ||
"e2e:web": "BROWSER=none yarn e2e:all [email protected]/{web,api}", | ||
"generate:bundle-info": "lerna run generate:bundle-info --parallel --", | ||
"generate:sentry-release": "lerna run generate:sentry-release --concurrency 1 --stream --", | ||
"lint": "yarn build && yarn lint:alone", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,10 @@ firebase | |
|
||
# web | ||
bundle | ||
.bundle-info.json | ||
|
||
# mobile | ||
.expo | ||
|
||
./.* | ||
.gitignore | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.