cdk-nuxt 2.25.0 → 2.25.1

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.
Files changed (2) hide show
  1. package/README.md +6 -4
  2. package/package.json +12 -7
package/README.md CHANGED
@@ -47,18 +47,20 @@ Install the package and its peer dependencies:
47
47
 
48
48
  ```bash
49
49
  # Using pnpm (recommended)
50
- pnpm add -D cdk-nuxt aws-cdk@^2.214.0 aws-cdk-lib@^2.214.0 constructs@^10.4.2 typescript ts-node
50
+ pnpm add -D cdk-nuxt aws-cdk@^2.1110.0 aws-cdk-lib@^2.241.0 constructs@^10.5.0 typescript ts-node
51
51
 
52
52
  # Using npm
53
- npm install --save-dev cdk-nuxt aws-cdk@^2.214.0 aws-cdk-lib@^2.214.0 constructs@^10.4.2 typescript ts-node
53
+ npm install --save-dev cdk-nuxt aws-cdk@^2.1110.0 aws-cdk-lib@^2.241.0 constructs@^10.5.0 typescript ts-node
54
54
 
55
55
  # Using yarn
56
- yarn add -D cdk-nuxt aws-cdk@^2.214.0 aws-cdk-lib@^2.214.0 constructs@^10.4.2 typescript ts-node
56
+ yarn add -D cdk-nuxt aws-cdk@^2.1110.0 aws-cdk-lib@^2.241.0 constructs@^10.5.0 typescript ts-node
57
57
  ```
58
58
 
59
+ The AWS CDK CLI must be at least `2.1107.0` (check with `pnpm cdk --version`).
60
+
59
61
  **Optional:** If you plan to enable Access Logs Analysis:
60
62
  ```bash
61
- pnpm add -D @aws-cdk/aws-glue-alpha@2.214.0-alpha.0
63
+ pnpm add -D @aws-cdk/aws-glue-alpha@2.241.0-alpha.0
62
64
  ```
63
65
 
64
66
  ### 2. Configure Nuxt
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cdk-nuxt",
3
- "version": "2.25.0",
3
+ "version": "2.25.1",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,19 +25,24 @@
25
25
  "changelogen": "^0.6.2",
26
26
  "ts-node": "^10.9.2",
27
27
  "typescript": "^5.6.3",
28
- "aws-cdk-lib": "^2.214.0",
29
- "constructs": "^10.4.2",
30
- "@aws-cdk/aws-glue-alpha": "2.214.0-alpha.0"
28
+ "aws-cdk": ">=2.1107.0",
29
+ "aws-cdk-lib": "^2.241.0",
30
+ "constructs": "^10.5.0",
31
+ "@aws-cdk/aws-glue-alpha": "2.241.0-alpha.0"
31
32
  },
32
33
  "dependencies": {
33
34
  "shelljs": "^0.10.0"
34
35
  },
35
36
  "peerDependencies": {
36
- "aws-cdk-lib": "^2.214.0",
37
- "constructs": "^10.4.2",
38
- "@aws-cdk/aws-glue-alpha": "2.214.0-alpha.0"
37
+ "aws-cdk": ">=2.1107.0 <3.0.0",
38
+ "aws-cdk-lib": "^2.241.0",
39
+ "constructs": "^10.5.0",
40
+ "@aws-cdk/aws-glue-alpha": ">=2.241.0-alpha.0 <3.0.0"
39
41
  },
40
42
  "peerDependenciesMeta": {
43
+ "aws-cdk": {
44
+ "optional": true
45
+ },
41
46
  "@aws-cdk/aws-glue-alpha": {
42
47
  "optional": true
43
48
  }