@goldstack/nodemonx 0.4.35 → 0.4.38
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/README.md +17 -2
- package/package.json +6 -7
package/README.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
|
-
|
|
1
|
+
[](https://badge.fury.io/js/%40goldstack%2Futils-nodemonx)
|
|
2
|
+
|
|
3
|
+
# Goldstack Nodemonx Utilities
|
|
2
4
|
|
|
3
5
|
This is an enhanced version of [nodemon](https://www.npmjs.com/package/nodemon) specifically designed to support watching for code changes in projects with multiple packages/workspaces.
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
This utility has been developed for the [Goldstack](https://goldstack.party) starter project builder. Check it out for starting your next project ❤️
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install @goldstack/utils-nodemonx
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
```typescript
|
|
16
|
+
import { nodemonx } from '@goldstack/utils-nodemonx';
|
|
17
|
+
|
|
18
|
+
nodemonx();
|
|
19
|
+
|
|
20
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goldstack/nodemonx",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.38",
|
|
4
4
|
"description": "Enhanced utility for watching for changes in directories",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"goldstack",
|
|
@@ -33,26 +33,25 @@
|
|
|
33
33
|
"compile-watch:light": "nodemon --watch ./src/ -e '*' --exec 'yarn compile'",
|
|
34
34
|
"coverage": "jest --collect-coverage --passWithNoTests --config=./jest.config.js --runInBand",
|
|
35
35
|
"prepublishOnly": "yarn run build",
|
|
36
|
-
"publish": "
|
|
36
|
+
"publish": "yarn npm publish --tolerate-republish",
|
|
37
37
|
"test": "jest --passWithNoTests --config=./jest.config.js --runInBand",
|
|
38
|
-
"version:apply": "
|
|
38
|
+
"version:apply": "yarn version $@ && yarn version apply",
|
|
39
39
|
"version:apply:force": "yarn version $@ && yarn version apply"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@goldstack/utils-log": "0.3.
|
|
43
|
-
"@goldstack/utils-sh": "0.5.
|
|
42
|
+
"@goldstack/utils-log": "0.3.31",
|
|
43
|
+
"@goldstack/utils-sh": "0.5.36",
|
|
44
44
|
"minimatch": "^10.0.1",
|
|
45
45
|
"node-watch": "^0.6.4"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@goldstack/utils-git": "0.2.22",
|
|
49
48
|
"@swc/core": "^1.15.8",
|
|
50
49
|
"@swc/jest": "^0.2.39",
|
|
51
50
|
"@types/jest": "^30.0.0",
|
|
52
51
|
"@types/minimatch": "^5.1.2",
|
|
53
52
|
"@types/node": "^25.0.3",
|
|
54
53
|
"jest": "^30.2.0",
|
|
55
|
-
"rimraf": "^
|
|
54
|
+
"rimraf": "^6.1.2",
|
|
56
55
|
"typescript": "^5.9.3"
|
|
57
56
|
},
|
|
58
57
|
"publishConfig": {
|