skuba 0.0.0-master-20230318051429 → 0.0.0-preserve-assets-20230504052952
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/README.md +1 -1
- package/lib/api/jest/index.d.ts +4 -1
- package/lib/cli/adapter/eslint.js +0 -13
- package/lib/cli/adapter/eslint.js.map +2 -2
- package/lib/cli/adapter/prettier.js +1 -1
- package/lib/cli/adapter/prettier.js.map +1 -1
- package/lib/cli/build/esbuild.js +3 -42
- package/lib/cli/build/esbuild.js.map +3 -3
- package/lib/cli/build/index.js +9 -2
- package/lib/cli/build/index.js.map +2 -2
- package/lib/cli/build/tsc.d.ts +3 -0
- package/lib/cli/build/tsc.js +60 -0
- package/lib/cli/build/tsc.js.map +3 -3
- package/lib/cli/buildPackage.js +17 -0
- package/lib/cli/buildPackage.js.map +3 -3
- package/lib/cli/configure/modules/jest.js +1 -1
- package/lib/cli/configure/modules/jest.js.map +1 -1
- package/lib/cli/configure/modules/package.js +3 -3
- package/lib/cli/configure/modules/package.js.map +1 -1
- package/lib/cli/configure/modules/tsconfig.js +1 -1
- package/lib/cli/configure/modules/tsconfig.js.map +2 -2
- package/lib/cli/configure/patchRenovateConfig.js +3 -1
- package/lib/cli/configure/patchRenovateConfig.js.map +2 -2
- package/lib/cli/configure/patchServerListener.d.ts +3 -0
- package/lib/cli/configure/patchServerListener.js +87 -0
- package/lib/cli/configure/patchServerListener.js.map +7 -0
- package/lib/cli/format.js +2 -0
- package/lib/cli/format.js.map +2 -2
- package/lib/cli/lint/autofix.js +9 -1
- package/lib/cli/lint/autofix.js.map +2 -2
- package/lib/cli/lint/external.js +1 -4
- package/lib/cli/lint/external.js.map +1 -1
- package/lib/cli/lint/index.js +2 -0
- package/lib/cli/lint/index.js.map +2 -2
- package/lib/cli/start.js +1 -1
- package/lib/cli/start.js.map +1 -1
- package/lib/cli/test/index.js +1 -2
- package/lib/cli/test/index.js.map +1 -1
- package/lib/cli/test/reporters/github/annotations.js +1 -1
- package/lib/cli/test/reporters/github/annotations.js.map +1 -1
- package/lib/cli/test/reporters/github/index.js +0 -2
- package/lib/utils/copy.d.ts +2 -0
- package/lib/utils/copy.js +39 -1
- package/lib/utils/copy.js.map +2 -2
- package/lib/utils/dir.d.ts +2 -1
- package/lib/utils/dir.js +2 -2
- package/lib/utils/dir.js.map +2 -2
- package/lib/utils/exec.js +1 -4
- package/lib/utils/exec.js.map +1 -1
- package/lib/utils/manifest.d.ts +1 -0
- package/lib/utils/manifest.js +8 -2
- package/lib/utils/manifest.js.map +2 -2
- package/lib/wrapper/requestListener.js +3 -0
- package/lib/wrapper/requestListener.js.map +2 -2
- package/package.json +15 -15
- package/template/base/.github/CODEOWNERS +0 -4
- package/template/express-rest-api/.buildkite/pipeline.yml +1 -1
- package/template/express-rest-api/gantry.apply.yml +0 -2
- package/template/express-rest-api/package.json +1 -1
- package/template/express-rest-api/src/api/healthCheck.ts +1 -1
- package/template/express-rest-api/src/api/smokeTest.ts +1 -1
- package/template/greeter/.buildkite/pipeline.yml +1 -1
- package/template/koa-rest-api/.buildkite/pipeline.yml +1 -1
- package/template/koa-rest-api/gantry.apply.yml +0 -2
- package/template/koa-rest-api/package.json +5 -5
- package/template/koa-rest-api/src/api/healthCheck.ts +1 -1
- package/template/koa-rest-api/src/api/jobs/getJobs.ts +1 -1
- package/template/koa-rest-api/src/api/jobs/postJob.ts +1 -1
- package/template/koa-rest-api/src/api/smokeTest.ts +1 -1
- package/template/koa-rest-api/src/framework/server.test.ts +1 -1
- package/template/koa-rest-api/src/framework/validation.ts +2 -2
- package/template/koa-rest-api/src/storage/jobs.ts +1 -1
- package/template/koa-rest-api/src/testing/server.ts +2 -2
- package/template/koa-rest-api/src/testing/types.ts +1 -1
- package/template/koa-rest-api/src/tracing.ts +3 -8
- package/template/koa-rest-api/tsconfig.json +18 -0
- package/template/lambda-sqs-worker/.buildkite/pipeline.yml +2 -2
- package/template/lambda-sqs-worker/package.json +2 -2
- package/template/lambda-sqs-worker/src/app.ts +1 -1
- package/template/lambda-sqs-worker/src/framework/validation.ts +1 -1
- package/template/lambda-sqs-worker/src/mapping/jobScorer.ts +5 -2
- package/template/lambda-sqs-worker/src/services/jobScorer.ts +6 -6
- package/template/lambda-sqs-worker/src/testing/handler.ts +1 -1
- package/template/lambda-sqs-worker/src/testing/types.ts +1 -1
- package/template/lambda-sqs-worker-cdk/.buildkite/pipeline.yml +2 -2
- package/template/lambda-sqs-worker-cdk/infra/appStack.ts +1 -1
- package/template/lambda-sqs-worker-cdk/package.json +1 -1
- package/template/lambda-sqs-worker-cdk/src/app.ts +1 -1
- package/template/oss-npm-package/_package.json +19 -16
- package/template/oss-npm-package/tsconfig.json +2 -2
- package/template/private-npm-package/_package.json +19 -16
- package/template/private-npm-package/tsconfig.json +2 -2
|
@@ -1,25 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"name": "<%- moduleName %>",
|
|
3
|
+
"version": "0.0.0-semantically-released",
|
|
3
4
|
"description": "<%- description %>",
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"skuba": "*"
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+ssh://git@github.com/<%- orgName %>/<%- repoName %>.git"
|
|
8
8
|
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"main": "./lib-commonjs/index.js",
|
|
12
|
+
"module": "./lib-es2015/index.js",
|
|
13
|
+
"types": "./lib-types/index.d.ts",
|
|
9
14
|
"files": [
|
|
10
15
|
"lib*/**/*.d.ts",
|
|
11
16
|
"lib*/**/*.js",
|
|
12
17
|
"lib*/**/*.js.map",
|
|
13
18
|
"lib*/**/*.json"
|
|
14
19
|
],
|
|
15
|
-
"license": "MIT",
|
|
16
|
-
"main": "./lib-commonjs/index.js",
|
|
17
|
-
"module": "./lib-es2015/index.js",
|
|
18
|
-
"name": "<%- moduleName %>",
|
|
19
|
-
"repository": {
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "git+ssh://git@github.com/<%- orgName %>/<%- repoName %>.git"
|
|
22
|
-
},
|
|
23
20
|
"scripts": {
|
|
24
21
|
"build": "skuba build-package",
|
|
25
22
|
"commit": "cz",
|
|
@@ -35,7 +32,13 @@
|
|
|
35
32
|
"path": "cz-conventional-changelog"
|
|
36
33
|
}
|
|
37
34
|
},
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
|
|
35
|
+
"dependencies": {},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@types/node": "^16.18.3",
|
|
38
|
+
"commitizen": "^4.2.4",
|
|
39
|
+
"skuba": "*"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=16.11"
|
|
43
|
+
}
|
|
41
44
|
}
|
|
@@ -1,25 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"name": "<%- moduleName %>",
|
|
3
|
+
"version": "0.0.0-semantically-released",
|
|
3
4
|
"description": "<%- description %>",
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"skuba": "*"
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+ssh://git@github.com/<%- orgName %>/<%- repoName %>.git"
|
|
8
8
|
},
|
|
9
|
+
"license": "UNLICENSED",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"main": "./lib-commonjs/index.js",
|
|
12
|
+
"module": "./lib-es2015/index.js",
|
|
13
|
+
"types": "./lib-types/index.d.ts",
|
|
9
14
|
"files": [
|
|
10
15
|
"lib*/**/*.d.ts",
|
|
11
16
|
"lib*/**/*.js",
|
|
12
17
|
"lib*/**/*.js.map",
|
|
13
18
|
"lib*/**/*.json"
|
|
14
19
|
],
|
|
15
|
-
"license": "UNLICENSED",
|
|
16
|
-
"main": "./lib-commonjs/index.js",
|
|
17
|
-
"module": "./lib-es2015/index.js",
|
|
18
|
-
"name": "<%- moduleName %>",
|
|
19
|
-
"repository": {
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "git+ssh://git@github.com/<%- orgName %>/<%- repoName %>.git"
|
|
22
|
-
},
|
|
23
20
|
"scripts": {
|
|
24
21
|
"build": "skuba build-package",
|
|
25
22
|
"commit": "cz",
|
|
@@ -35,7 +32,13 @@
|
|
|
35
32
|
"path": "cz-conventional-changelog"
|
|
36
33
|
}
|
|
37
34
|
},
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
|
|
35
|
+
"dependencies": {},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@types/node": "^16.18.3",
|
|
38
|
+
"commitizen": "^4.2.4",
|
|
39
|
+
"skuba": "*"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=16.11"
|
|
43
|
+
}
|
|
41
44
|
}
|