@iservice-dev/is-wp-plugin-kit 1.7.12 → 1.7.15

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/files/deploy.yml CHANGED
@@ -20,7 +20,7 @@ jobs:
20
20
  - name: Setup Node.js
21
21
  uses: actions/setup-node@v4
22
22
  with:
23
- node-version: "20"
23
+ node-version: "24"
24
24
  cache: "npm"
25
25
 
26
26
  - name: Install Node dependencies
@@ -120,7 +120,10 @@ jobs:
120
120
  cp -r includes package/[plugin-placehoder]/ || true
121
121
  mkdir -p package/[plugin-placehoder]/assets
122
122
  cp -r assets/dist package/[plugin-placehoder]/assets/ || true
123
-
123
+
124
+ # Copy compiled translations
125
+ cp -r languages package/[plugin-placehoder]/ || true
126
+
124
127
  # Only copy vendor directory if it exists
125
128
  if [ -d "vendor" ]; then
126
129
  cp -r vendor package/[plugin-placehoder]/
@@ -9,11 +9,10 @@
9
9
  "no-duplicate-imports": "error",
10
10
  "no-unreachable": "error",
11
11
  "no-empty": "error",
12
- "no-for-loop": "warn",
12
+ "unicorn/no-for-loop": "warn",
13
13
  "no-var": "warn",
14
14
  "prefer-const": "warn",
15
15
  "eqeqeq": "warn",
16
- "semi": "warn",
17
16
  "no-console": "warn"
18
17
  }
19
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iservice-dev/is-wp-plugin-kit",
3
- "version": "1.7.12",
3
+ "version": "1.7.15",
4
4
  "description": "A toolkit for WordPress plugin development with Vite, TypeScript, and modern build tools",
5
5
  "type": "module",
6
6
  "main": "vite/index.js",
@@ -28,7 +28,7 @@
28
28
  "chokidar-cli": "^3.0.0",
29
29
  "fast-glob": "^3.3.3",
30
30
  "glob": "^13.0.6",
31
- "oxlint": "^1.20.0",
31
+ "oxlint": "~1.60.0",
32
32
  "po2mo": "^2.0.7",
33
33
  "sass-embedded": "^1.92.0",
34
34
  "stylelint": "^16.25.0",