skuba 0.0.0-master-20231001235226 → 0.0.0-master-20231121000709
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/prettier.js +1 -1
- package/lib/api/jest/index.d.ts +2 -2
- package/lib/api/jest/index.js +19 -1
- package/lib/api/jest/index.js.map +2 -2
- package/lib/api/net/compose.js +2 -1
- package/lib/api/net/compose.js.map +2 -2
- package/lib/cli/configure/getProjectType.d.ts +1 -1
- package/lib/cli/configure/getProjectType.js +5 -2
- package/lib/cli/configure/getProjectType.js.map +2 -2
- package/lib/cli/configure/index.js +0 -4
- package/lib/cli/configure/index.js.map +2 -2
- package/lib/cli/configure/patchRenovateConfig.js +13 -11
- package/lib/cli/configure/patchRenovateConfig.js.map +2 -2
- package/lib/cli/init/getConfig.d.ts +3 -3
- package/lib/cli/init/getConfig.js +8 -8
- package/lib/cli/init/getConfig.js.map +2 -2
- package/lib/cli/init/index.js +0 -1
- package/lib/cli/init/index.js.map +2 -2
- package/lib/cli/init/types.d.ts +99 -27
- package/lib/cli/init/types.js +26 -35
- package/lib/cli/init/types.js.map +2 -2
- package/lib/utils/error.d.ts +30 -10
- package/lib/utils/error.js +10 -20
- package/lib/utils/error.js.map +2 -2
- package/lib/utils/exec.js +2 -2
- package/lib/utils/exec.js.map +2 -2
- package/lib/utils/manifest.d.ts +3 -3
- package/lib/utils/manifest.js +9 -9
- package/lib/utils/manifest.js.map +2 -2
- package/lib/utils/template.d.ts +43 -13
- package/lib/utils/template.js +15 -15
- package/lib/utils/template.js.map +2 -2
- package/package.json +21 -21
- package/template/express-rest-api/.buildkite/pipeline.yml +3 -2
- package/template/express-rest-api/.nvmrc +1 -1
- package/template/express-rest-api/Dockerfile +1 -1
- package/template/express-rest-api/Dockerfile.dev-deps +3 -3
- package/template/express-rest-api/README.md +6 -6
- package/template/express-rest-api/package.json +2 -2
- package/template/greeter/.buildkite/pipeline.yml +3 -2
- package/template/greeter/.nvmrc +1 -1
- package/template/greeter/Dockerfile +3 -3
- package/template/greeter/README.md +3 -3
- package/template/greeter/package.json +2 -2
- package/template/koa-rest-api/.buildkite/pipeline.yml +3 -2
- package/template/koa-rest-api/Dockerfile +1 -1
- package/template/koa-rest-api/Dockerfile.dev-deps +3 -3
- package/template/koa-rest-api/README.md +6 -6
- package/template/koa-rest-api/package.json +5 -5
- package/template/koa-rest-api/src/app.test.ts +8 -4
- package/template/lambda-sqs-worker/.buildkite/pipeline.yml +4 -3
- package/template/lambda-sqs-worker/.nvmrc +1 -1
- package/template/lambda-sqs-worker/Dockerfile +3 -3
- package/template/lambda-sqs-worker/README.md +6 -6
- package/template/lambda-sqs-worker/package.json +3 -3
- package/template/lambda-sqs-worker/serverless.yml +1 -1
- package/template/lambda-sqs-worker/src/framework/validation.test.ts +1 -1
- package/template/lambda-sqs-worker-cdk/.buildkite/pipeline.yml +4 -3
- package/template/lambda-sqs-worker-cdk/Dockerfile +3 -3
- package/template/lambda-sqs-worker-cdk/infra/__snapshots__/appStack.test.ts.snap +2 -2
- package/template/lambda-sqs-worker-cdk/infra/appStack.ts +1 -1
- package/template/lambda-sqs-worker-cdk/package.json +4 -4
- package/template/oss-npm-package/.nvmrc +1 -1
- package/template/oss-npm-package/README.md +1 -1
- package/template/private-npm-package/.nvmrc +1 -1
- package/template/private-npm-package/README.md +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
20
|
|
@@ -121,7 +121,7 @@ Here are some branches that **semantic-release** supports by default:
|
|
|
121
121
|
For more information, see the **semantic-release** docs on [triggering a release].
|
|
122
122
|
|
|
123
123
|
[distribution tags]: https://docs.npmjs.com/adding-dist-tags-to-packages
|
|
124
|
-
[
|
|
124
|
+
[OSS npm package guidance]: https://github.com/SEEK-Jobs/seek-oss-ci/blob/master/NPM_PACKAGES.md#access-to-publish-to-npm
|
|
125
125
|
[release workflow]: .github/workflows/release.yml
|
|
126
126
|
[seek-oss]: https://github.com/seek-oss
|
|
127
127
|
[semantic-release]: https://github.com/semantic-release/semantic-release
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
20
|
|
@@ -103,7 +103,7 @@ Here are some branches that **semantic-release** supports by default:
|
|
|
103
103
|
For more information, see the **semantic-release** docs on [triggering a release].
|
|
104
104
|
|
|
105
105
|
[distribution tags]: https://docs.npmjs.com/adding-dist-tags-to-packages
|
|
106
|
-
[
|
|
107
|
-
[
|
|
106
|
+
[Gutenberg]: https://github.com/SEEK-Jobs/gutenberg
|
|
107
|
+
[SEEK-Jobs]: https://github.com/orgs/seek-jobs/sso
|
|
108
108
|
[semantic-release]: https://github.com/semantic-release/semantic-release
|
|
109
109
|
[triggering a release]: https://github.com/semantic-release/semantic-release/#triggering-a-release
|