@codedazur/cdk-next-app 0.2.9 → 0.2.11
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/CHANGELOG.md +14 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @codedazur/cdk-next-app
|
|
2
2
|
|
|
3
|
+
## 0.2.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`c8d5f0b`](https://github.com/codedazur/toolkit/commit/c8d5f0b86cb3eb1677d51a4531e8bcc948f8ea4b)]:
|
|
8
|
+
- @codedazur/cdk-docker-cluster@0.9.0
|
|
9
|
+
|
|
10
|
+
## 0.2.10
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`d557d82`](https://github.com/codedazur/toolkit/commit/d557d822ffe8e42b0907f1d4e1a2b243f3430674)]:
|
|
15
|
+
- @codedazur/cdk-docker-cluster@0.8.0
|
|
16
|
+
|
|
3
17
|
## 0.2.9
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -7,6 +7,9 @@ interface NextAppProps extends DockerClusterProps {
|
|
|
7
7
|
/**
|
|
8
8
|
* A docker cluster preconfigured for running a Next.js application with support
|
|
9
9
|
* for private NPM packages using a build-time secret.
|
|
10
|
+
*
|
|
11
|
+
* @todo Add specific distribution behaviors for the various Next.js features.
|
|
12
|
+
* @see https://bitbucket.org/codedazur/cdk-constructs/src/v5.14.0/src/NextSite/NextSite.ts
|
|
10
13
|
*/
|
|
11
14
|
declare class NextApp extends DockerCluster {
|
|
12
15
|
constructor(scope: Construct, id: string, { source, service: { port, ...service }, ...props }: NextAppProps);
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,9 @@ interface NextAppProps extends DockerClusterProps {
|
|
|
7
7
|
/**
|
|
8
8
|
* A docker cluster preconfigured for running a Next.js application with support
|
|
9
9
|
* for private NPM packages using a build-time secret.
|
|
10
|
+
*
|
|
11
|
+
* @todo Add specific distribution behaviors for the various Next.js features.
|
|
12
|
+
* @see https://bitbucket.org/codedazur/cdk-constructs/src/v5.14.0/src/NextSite/NextSite.ts
|
|
10
13
|
*/
|
|
11
14
|
declare class NextApp extends DockerCluster {
|
|
12
15
|
constructor(scope: Construct, id: string, { source, service: { port, ...service }, ...props }: NextAppProps);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codedazur/cdk-next-app",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.11",
|
|
4
4
|
"main": ".dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"constructs": ">=10"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@codedazur/cdk-docker-cluster": "^0.
|
|
30
|
+
"@codedazur/cdk-docker-cluster": "^0.9.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/node": "^20.14.9",
|