-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: update version * feat: add location overrides * test: add unit tests * feat: update schema
- Loading branch information
1 parent
d60280a
commit f4879ca
Showing
13 changed files
with
7,118 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,10 +31,10 @@ | |
"lint:fix": "npm run lint -- --fix", | ||
"init": "./scripts/init.sh", | ||
"init:dev": "./scripts/init.sh --dev", | ||
"migrate": "rm -rf ./extensions/migrations/* && mkdir -p ./extensions/migrations/ && cp -rp ./src/extensions/migrations/* ./extensions/migrations/ && dotenv -- npx --yes [email protected].0 database migrate:latest", | ||
"migrate": "rm -rf ./extensions/migrations/* && mkdir -p ./extensions/migrations/ && cp -rp ./src/extensions/migrations/* ./extensions/migrations/ && dotenv -- npx --yes [email protected].3 database migrate:latest", | ||
"seed": "NODE_ENV=development knex seed:run", | ||
"schema:apply": "npx --yes [email protected].0 schema apply --yes snapshots/collections-schema.yml", | ||
"schema:snapshot": "npx --yes [email protected].0 schema snapshot --yes snapshots/collections-schema.yml", | ||
"schema:apply": "npx --yes [email protected].3 schema apply --yes snapshots/collections-schema.yml", | ||
"schema:snapshot": "npx --yes [email protected].3 schema snapshot --yes snapshots/collections-schema.yml", | ||
"prepare": "husky install || echo 'Failed to install husky'", | ||
"build:in-sequence": "grep -E 'AS builder-[0-9]+' Dockerfile | awk -F 'AS ' '{print $2}' | xargs -r -P 1 -I STAGE docker build --target STAGE .", | ||
"test": "./scripts/test.sh" | ||
|
Oops, something went wrong.