jsii-release 0.2.987 → 0.2.989
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/CONTRIBUTING.md +33 -0
- package/README.md +34 -12
- package/bin/publib-maven +2 -361
- package/lib/bin/publib-ca.js +20 -12
- package/lib/bin/publib-golang.js +19 -10
- package/lib/bin/publib-maven.d.ts +10 -0
- package/lib/bin/publib-maven.js +608 -0
- package/lib/codeartifact/codeartifact-cli.js +18 -8
- package/lib/codeartifact/codeartifact-repo.js +9 -13
- package/lib/codeartifact/display.js +2 -3
- package/lib/codeartifact/files.js +28 -20
- package/lib/codeartifact/shell.d.ts +0 -2
- package/lib/codeartifact/shell.js +30 -25
- package/lib/codeartifact/staging/maven.js +23 -16
- package/lib/codeartifact/staging/npm.js +21 -12
- package/lib/codeartifact/staging/nuget.js +3 -4
- package/lib/codeartifact/staging/parallel-shell.d.ts +0 -1
- package/lib/codeartifact/staging/parallel-shell.js +3 -4
- package/lib/codeartifact/staging/pip.js +3 -4
- package/lib/codeartifact/usage-dir.js +18 -8
- package/lib/help/corking.d.ts +2 -6
- package/lib/help/corking.js +18 -8
- package/lib/help/git.js +34 -27
- package/lib/help/os.js +19 -10
- package/lib/help/shell.js +23 -15
- package/lib/help/sleep.js +2 -3
- package/lib/targets/go.js +24 -16
- package/package.json +14 -12
- package/package.json.bak +14 -12
package/package.json.bak
CHANGED
|
@@ -53,36 +53,38 @@
|
|
|
53
53
|
"organization": true
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/client-sts": "^3.
|
|
56
|
+
"@aws-sdk/client-sts": "^3.817.0",
|
|
57
|
+
"@stylistic/eslint-plugin": "^2",
|
|
57
58
|
"@types/glob": "^8.1.0",
|
|
58
59
|
"@types/jest": "^27.5.2",
|
|
59
|
-
"@types/node": "^18",
|
|
60
|
+
"@types/node": "^18.17.0",
|
|
60
61
|
"@types/yargs": "^17",
|
|
61
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
62
|
-
"@typescript-eslint/parser": "^
|
|
62
|
+
"@typescript-eslint/eslint-plugin": "^8",
|
|
63
|
+
"@typescript-eslint/parser": "^8",
|
|
63
64
|
"cdklabs-projen-project-types": "^0.1.204",
|
|
64
65
|
"commit-and-tag-version": "^12",
|
|
65
66
|
"constructs": "^10.0.0",
|
|
66
|
-
"eslint": "^
|
|
67
|
+
"eslint": "^9",
|
|
67
68
|
"eslint-import-resolver-typescript": "^2.7.1",
|
|
68
69
|
"eslint-plugin-import": "^2.31.0",
|
|
69
70
|
"jest": "^27.5.1",
|
|
70
|
-
"jest-junit": "^
|
|
71
|
-
"projen": "^0.
|
|
71
|
+
"jest-junit": "^16",
|
|
72
|
+
"projen": "^0.92.6",
|
|
72
73
|
"ts-jest": "^27.1.5",
|
|
73
74
|
"ts-node": "^10.9.2",
|
|
74
|
-
"typescript": "~
|
|
75
|
+
"typescript": "~5.7"
|
|
75
76
|
},
|
|
76
77
|
"dependencies": {
|
|
77
|
-
"@aws-sdk/client-codeartifact": "^3.
|
|
78
|
-
"@aws-sdk/credential-providers": "^3.
|
|
78
|
+
"@aws-sdk/client-codeartifact": "^3.817.0",
|
|
79
|
+
"@aws-sdk/credential-providers": "^3.817.0",
|
|
79
80
|
"@aws-sdk/types": "^3.804.0",
|
|
80
81
|
"@types/fs-extra": "^8.0.0",
|
|
81
82
|
"fs-extra": "^8.0.0",
|
|
82
83
|
"glob": "10.0.0",
|
|
83
84
|
"p-queue": "6",
|
|
84
85
|
"shlex": "^2.1.2",
|
|
85
|
-
"yargs": "^17"
|
|
86
|
+
"yargs": "^17",
|
|
87
|
+
"zx": "^8.5.4"
|
|
86
88
|
},
|
|
87
89
|
"main": "lib/index.js",
|
|
88
90
|
"license": "Apache-2.0",
|
|
@@ -90,7 +92,7 @@
|
|
|
90
92
|
"publishConfig": {
|
|
91
93
|
"access": "public"
|
|
92
94
|
},
|
|
93
|
-
"version": "0.2.
|
|
95
|
+
"version": "0.2.989",
|
|
94
96
|
"jest": {
|
|
95
97
|
"coverageProvider": "v8",
|
|
96
98
|
"testMatch": [
|