-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
23,516 additions
and
57,257 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ commands: | |
npm_install: | ||
steps: | ||
- restore_cache: *cache-key | ||
- run: npm ci --prefer-offline --no-audit --no-package-lock | ||
- run: npm ci | ||
- save_cache: | ||
<<: *cache-key | ||
paths: | ||
|
@@ -37,8 +37,9 @@ jobs: | |
- vault/get-secrets: | ||
template-preset: npm-read | ||
- npm_install | ||
# TODO: investigate why this has different results than running locally | ||
# - run: npm run prettier:check | ||
- run: npm run build | ||
- run: npm run lint | ||
- run: npm run prettier:check | ||
- run: npm run test:ci | ||
resource_class: medium+ | ||
|
||
|
@@ -53,8 +54,8 @@ jobs: | |
- run: git remote set-url origin "https://$GIT_AUTHOR_NAME:[email protected]/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME" | ||
- npm_install | ||
- run: npm run build | ||
- run: npm run lerna -- version --no-private --conventional-commits --create-release github --yes | ||
- run: npm run lerna -- publish from-git --yes | ||
- run: npm run lerna:version | ||
- run: npm run lerna:publish | ||
|
||
compressed-size: | ||
executor: default | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
**/node_modules | ||
**/dist | ||
**/coverage |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions
1
deprecated/gatsby-transformer-contentful-richtext/extend-node-type.js.map
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
deprecated/gatsby-transformer-contentful-richtext/gatsby-node.js.map
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"$schema": "./node_modules/nx/schemas/nx-schema.json", | ||
"tasksRunnerOptions": { | ||
"default": { | ||
"runner": "nx/tasks-runners/default", | ||
"options": { | ||
"cacheableOperations": [ | ||
"build", | ||
"lint", | ||
"prebuild", | ||
"test", | ||
"test:prod", | ||
"generate-json-schema" | ||
] | ||
} | ||
} | ||
}, | ||
"targetDefaults": { | ||
"build": { | ||
"dependsOn": ["^build"], | ||
"outputs": ["{projectRoot}/dist"] | ||
}, | ||
"lint": { | ||
"dependsOn": ["^lint"], | ||
"outputs": ["{projectRoot}/]"] | ||
}, | ||
"prebuild": { | ||
"dependsOn": ["^prebuild"] | ||
}, | ||
"test": { | ||
"dependsOn": ["^test"] | ||
}, | ||
"test:prod": { | ||
"dependsOn": ["^test:prod"] | ||
}, | ||
"generate-json-schema": { | ||
"dependsOn": ["^generate-json-schema"], | ||
"outputs": ["{projectRoot}/src/schemas/generated"] | ||
} | ||
}, | ||
"affected": { | ||
"defaultBase": "origin/master" | ||
}, | ||
"defaultBase": "master", | ||
"namedInputs": { | ||
"default": ["{projectRoot}/**/*", "sharedGlobals"], | ||
"sharedGlobals": [], | ||
"production": ["default"] | ||
} | ||
} |
Oops, something went wrong.