@deot/dev-dever 1.1.0 → 1.1.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.
package/dist/index.cjs.js CHANGED
@@ -17,7 +17,7 @@ const run = (options) => devShared.Utils.autoCatch(async () => {
17
17
  options.watch = true;
18
18
  if (!workspace
19
19
  && packageName
20
- && packageName !== '**'
20
+ && packageName !== '*'
21
21
  && cwd !== packageDir
22
22
  && packageOptions?.scripts?.['dev']) {
23
23
  await devShared.Shell.spawn(`npm`, ['run', 'dev']);
package/dist/index.es.js CHANGED
@@ -15,7 +15,7 @@ const run = (options) => Utils.autoCatch(async () => {
15
15
  options.watch = true;
16
16
  if (!workspace
17
17
  && packageName
18
- && packageName !== '**'
18
+ && packageName !== '*'
19
19
  && cwd !== packageDir
20
20
  && packageOptions?.scripts?.['dev']) {
21
21
  await Shell.spawn(`npm`, ['run', 'dev']);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deot/dev-dever",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "main": "dist/index.es.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -13,7 +13,9 @@
13
13
  "access": "public"
14
14
  },
15
15
  "dependencies": {
16
- "@deot/dev-extract": "^1.1.0",
17
- "@deot/dev-shared": "^1.1.0"
16
+ "@deot/dev-shared": "^1.1.1"
17
+ },
18
+ "devDependencies": {
19
+ "cross-env": "^7.0.3"
18
20
  }
19
21
  }