@elementor/wp-lite-env 0.0.9 → 0.0.10

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.
@@ -22,11 +22,11 @@ jobs:
22
22
  with:
23
23
  token: ${{ secrets.MAINTAIN_TOKEN }}
24
24
 
25
- - name: Install Node.js 20.x
25
+ - name: Install Node.js 22.x
26
26
  uses: actions/setup-node@v4
27
27
  with:
28
28
  cache: 'npm'
29
- node-version: 20.x
29
+ node-version: 22.x
30
30
 
31
31
  - run: npm ci
32
32
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # wp-lite-env
2
2
 
3
+ ## 0.0.10
4
+
5
+ ### Patch Changes
6
+
7
+ - 38d32f5: change tsconfig
8
+
3
9
  ## 0.0.9
4
10
 
5
11
  ### Patch Changes
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elementor/wp-lite-env",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "private": false,
5
5
  "description": "A simple, lightweight, docker-based WordPress environment",
6
6
  "main": "dist/index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elementor/wp-lite-env",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "private": false,
5
5
  "description": "A simple, lightweight, docker-based WordPress environment",
6
6
  "main": "dist/index.js",
package/tsconfig.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "Node 18 + ESM + Strictest",
3
+ "display": "Node 22 + ESM + Strictest",
4
4
  "compilerOptions": {
5
5
  "lib": [
6
- "es2022"
6
+ "ESNext"
7
7
  ],
8
8
  "outDir": "dist",
9
- "module": "esnext",
9
+ "module": "ESNext",
10
10
  "target": "ESNext",
11
11
  "declaration": true,
12
12
  "declarationMap": true,
13
13
  "esModuleInterop": true,
14
14
  "skipLibCheck": true,
15
15
  "forceConsistentCasingInFileNames": true,
16
- "moduleResolution": "node",
16
+ "moduleResolution": "bundler",
17
17
  "allowUnusedLabels": false,
18
18
  "allowUnreachableCode": false,
19
19
  "noFallthroughCasesInSwitch": true,
@@ -26,7 +26,8 @@
26
26
  "noUnusedParameters": true,
27
27
  "checkJs": false,
28
28
  "allowJs": false,
29
- "resolveJsonModule": true
29
+ "resolveJsonModule": true,
30
+ "allowSyntheticDefaultImports": true
30
31
  },
31
32
  "include": ["./package.json", "index.*", "src/**/*"],
32
33
  }