@iservice-dev/is-wp-plugin-kit 1.4.0 → 1.5.0

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.
@@ -60,7 +60,11 @@ if (cmd === "compile-mo") {
60
60
  // ---------------------------
61
61
  if (cmd === "dev") {
62
62
  execSync(
63
- "npm-run-all --parallel dev:vite watch:lint watch:stylelint watch:mo",
63
+ "concurrently -k " +
64
+ '"vite" ' +
65
+ "\"chokidar 'assets/src/ts/**/*.ts' -c 'oxlint assets/src/ts'\" " +
66
+ "\"chokidar 'assets/src/scss/**/*.scss' -c 'stylelint \\\"assets/src/scss/**/*.scss\\\" --fix'\" " +
67
+ "\"chokidar 'assets/src/l10n/**/*.po' -c 'is-wp-plugin-kit compile-mo'\"",
64
68
  { stdio: "inherit" }
65
69
  );
66
70
  process.exit(0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iservice-dev/is-wp-plugin-kit",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
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",
@@ -19,10 +19,11 @@
19
19
  "is-wp-plugin-kit": "./bin/is-wp-plugin-kit.js"
20
20
  },
21
21
  "dependencies": {
22
+ "@types/jquery": "^3.5.33",
23
+ "@types/node": "^24.3.0",
22
24
  "autoprefixer": "^10.4.21",
23
25
  "chokidar-cli": "^3.0.0",
24
26
  "fast-glob": "^3.3.3",
25
- "npm-run-all": "^4.1.5",
26
27
  "oxlint": "^1.20.0",
27
28
  "po2mo": "^2.0.7",
28
29
  "sass-embedded": "^1.92.0",
@@ -30,7 +31,8 @@
30
31
  "stylelint-config-standard-scss": "^16.0.0",
31
32
  "stylelint-order": "^7.0.0",
32
33
  "stylelint-scss": "^6.12.1",
33
- "vite-plugin-static-copy": "^3.1.3"
34
+ "vite-plugin-static-copy": "^3.1.3",
35
+ "concurrently": "^8.2.2"
34
36
  },
35
37
  "peerDependencies": {
36
38
  "vite": ">=7.0.0"