cdk-docker-image-deployment 0.0.477 → 0.0.479
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/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +71 -17
- package/node_modules/aws-sdk/clients/kms.d.ts +1 -1
- package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk.js +74 -20
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +83 -83
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
- package/.gitattributes +0 -23
- package/.projenrc.ts +0 -36
package/package.json
CHANGED
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"jsii-docgen": "^7.2.9",
|
|
56
56
|
"jsii-pacmak": "^1.93.0",
|
|
57
57
|
"jsii-rosetta": "1.x",
|
|
58
|
-
"projen": "^0.78.
|
|
58
|
+
"projen": "^0.78.11",
|
|
59
59
|
"standard-version": "^9",
|
|
60
60
|
"ts-jest": "^27",
|
|
61
61
|
"ts-node": "^10.9.2",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@types/aws-lambda": "^8.10.131",
|
|
70
|
-
"aws-sdk": "^2.
|
|
70
|
+
"aws-sdk": "^2.1531.0"
|
|
71
71
|
},
|
|
72
72
|
"bundledDependencies": [
|
|
73
73
|
"@types/aws-lambda",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"main": "lib/index.js",
|
|
84
84
|
"license": "Apache-2.0",
|
|
85
85
|
"homepage": "https://github.com/cdklabs/cdk-docker-image-deployment#readme",
|
|
86
|
-
"version": "0.0.
|
|
86
|
+
"version": "0.0.479",
|
|
87
87
|
"jest": {
|
|
88
88
|
"testMatch": [
|
|
89
89
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|
package/.gitattributes
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen".
|
|
2
|
-
|
|
3
|
-
*.snap linguist-generated
|
|
4
|
-
/.eslintrc.json linguist-generated
|
|
5
|
-
/.gitattributes linguist-generated
|
|
6
|
-
/.github/pull_request_template.md linguist-generated
|
|
7
|
-
/.github/workflows/auto-approve.yml linguist-generated
|
|
8
|
-
/.github/workflows/build.yml linguist-generated
|
|
9
|
-
/.github/workflows/pull-request-lint.yml linguist-generated
|
|
10
|
-
/.github/workflows/release.yml linguist-generated
|
|
11
|
-
/.github/workflows/upgrade-main.yml linguist-generated
|
|
12
|
-
/.gitignore linguist-generated
|
|
13
|
-
/.mergify.yml linguist-generated
|
|
14
|
-
/.npmignore linguist-generated
|
|
15
|
-
/.projen/** linguist-generated
|
|
16
|
-
/.projen/deps.json linguist-generated
|
|
17
|
-
/.projen/files.json linguist-generated
|
|
18
|
-
/.projen/tasks.json linguist-generated
|
|
19
|
-
/API.md linguist-generated
|
|
20
|
-
/LICENSE linguist-generated
|
|
21
|
-
/package.json linguist-generated
|
|
22
|
-
/tsconfig.dev.json linguist-generated
|
|
23
|
-
/yarn.lock linguist-generated
|
package/.projenrc.ts
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { awscdk } from 'projen';
|
|
2
|
-
const project = new awscdk.AwsCdkConstructLibrary({
|
|
3
|
-
author: 'Parker Scanlon',
|
|
4
|
-
authorAddress: 'https://aws.amazon.com/',
|
|
5
|
-
cdkVersion: '2.24.0', // needed for node16
|
|
6
|
-
defaultReleaseBranch: 'main',
|
|
7
|
-
name: 'cdk-docker-image-deployment',
|
|
8
|
-
projenrcTs: true,
|
|
9
|
-
repositoryUrl: 'https://github.com/cdklabs/cdk-docker-image-deployment.git',
|
|
10
|
-
homepage: 'https://github.com/cdklabs/cdk-docker-image-deployment#readme',
|
|
11
|
-
autoApproveUpgrades: true,
|
|
12
|
-
autoApproveOptions: {
|
|
13
|
-
allowedUsernames: ['cdklabs-automation'],
|
|
14
|
-
secret: 'GITHUB_TOKEN',
|
|
15
|
-
},
|
|
16
|
-
gitignore: ['/cdk.out'],
|
|
17
|
-
description: 'This module allows you to copy docker image assets to a repository you control. This can be necessary if you want to build a Docker image in one CDK app and consume it in a different app or outside the CDK.',
|
|
18
|
-
bundledDeps: ['@types/aws-lambda', 'aws-sdk'],
|
|
19
|
-
devDeps: ['esbuild'],
|
|
20
|
-
publishToPypi: {
|
|
21
|
-
distName: 'cdk-docker-image-deployment',
|
|
22
|
-
module: 'cdk_docker_image_deployment',
|
|
23
|
-
},
|
|
24
|
-
publishToMaven: {
|
|
25
|
-
javaPackage: 'io.github.cdklabs.cdk.docker.image.deployment',
|
|
26
|
-
mavenGroupId: 'io.github.cdklabs',
|
|
27
|
-
mavenArtifactId: 'cdk-docker-image-deployment',
|
|
28
|
-
mavenEndpoint: 'https://s01.oss.sonatype.org',
|
|
29
|
-
},
|
|
30
|
-
publishToNuget: {
|
|
31
|
-
dotNetNamespace: 'Cdklabs.CdkDockerImageDeployment',
|
|
32
|
-
packageId: 'Cdklabs.CdkDockerImageDeployment',
|
|
33
|
-
},
|
|
34
|
-
});
|
|
35
|
-
|
|
36
|
-
project.synth();
|