@alexaegis/turbowatch 0.10.4 → 0.11.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.
@@ -1,4 +1,5 @@
1
- import { type TurbowatchLocalNodeModulesOptions } from './watch-local-node-modules.options.js';
1
+ import { TurbowatchLocalNodeModulesOptions } from './watch-local-node-modules.options.js';
2
+
2
3
  /**
3
4
  * Defines a turbowatch config that runs a build command everytime something
4
5
  * changes in `node_modules`, where all the local dependencies expected to be
@@ -1,7 +1,7 @@
1
- /// <reference types="node" resolution-mode="require"/>
2
- import type { Defined } from '@alexaegis/common';
3
- import { type CwdOption } from '@alexaegis/fs';
4
- import type { ChildProcess } from 'node:child_process';
1
+ import { Defined } from '@alexaegis/common';
2
+ import { CwdOption } from '@alexaegis/fs';
3
+ import { ChildProcess } from 'node:child_process';
4
+
5
5
  export interface TurbowatchLocalNodeModulesOptions extends CwdOption {
6
6
  /**
7
7
  * If true, it will make sure ignore statements do not contain node_modules
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@alexaegis/turbowatch",
3
3
  "description": "A turbowatch configuration to watch local dependencies through node_modules",
4
- "version": "0.10.4",
4
+ "version": "0.11.0",
5
5
  "license": "MIT",
6
6
  "private": false,
7
7
  "archetype": {
@@ -36,8 +36,8 @@
36
36
  "access": "public"
37
37
  },
38
38
  "engines": {
39
- "node": ">=18.10.0",
40
- "pnpm": ">=8.0.0"
39
+ "node": ">=20.12.0",
40
+ "pnpm": ">=9.1.1"
41
41
  },
42
42
  "exports": {
43
43
  ".": {
@@ -55,21 +55,21 @@
55
55
  "./readme": "./readme.md"
56
56
  },
57
57
  "dependencies": {
58
- "@alexaegis/common": "^0.9.0",
59
- "@alexaegis/fs": "^0.9.0",
60
- "@alexaegis/workspace-tools": "^0.9.0"
58
+ "@alexaegis/common": "^0.9.1",
59
+ "@alexaegis/fs": "^0.9.1",
60
+ "@alexaegis/workspace-tools": "^0.9.1"
61
61
  },
62
62
  "devDependencies": {
63
- "@alexaegis/eslint-config-vitest": "^0.10.4",
64
- "@alexaegis/ts": "^0.10.4",
65
- "@alexaegis/vite": "^0.10.4",
66
- "@alexaegis/vitest": "^0.10.4",
67
- "@types/node": "^20.11.30",
68
- "publint": "^0.2.7",
63
+ "@alexaegis/eslint-config-vitest": "^0.11.0",
64
+ "@alexaegis/ts": "^0.11.0",
65
+ "@alexaegis/vite": "^0.11.0",
66
+ "@alexaegis/vitest": "^0.11.0",
67
+ "@types/node": "^20.12.12",
68
+ "publint": "^0.2.8",
69
69
  "turbowatch": "^2.29.4",
70
- "typescript": "^5.4.3",
71
- "vite": "^5.2.4",
72
- "vitest": "^1.4.0"
70
+ "typescript": "^5.4.5",
71
+ "vite": "^5.2.11",
72
+ "vitest": "^1.6.0"
73
73
  },
74
74
  "scripts": {
75
75
  "lint:depcheck": "turbo run lint:depcheck_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/turbowatch",