@uscreen.de/dev-service 0.12.12 → 0.13.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/README.md +19 -15
- package/package.json +17 -26
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
Add the module within your dev repo:
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
$
|
|
22
|
+
$ pnpm add @uscreen.de/dev-service
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
## Usage
|
|
@@ -45,20 +45,17 @@ Next, run `service install` and you will end up with a directory structure like:
|
|
|
45
45
|
├── node_modules
|
|
46
46
|
│ └── ...
|
|
47
47
|
├── package.json
|
|
48
|
-
|
|
49
|
-
├──
|
|
50
|
-
│ ├── .
|
|
51
|
-
│
|
|
52
|
-
│
|
|
53
|
-
│
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
│
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
│ └── README
|
|
60
|
-
│
|
|
61
|
-
└── yarn.lock
|
|
48
|
+
└── services
|
|
49
|
+
├── .compose
|
|
50
|
+
│ ├── mongo.yml
|
|
51
|
+
│ ├── nginx.yml
|
|
52
|
+
│ └── redis.yml
|
|
53
|
+
│
|
|
54
|
+
└── nginx/default.conf
|
|
55
|
+
├── conf.d
|
|
56
|
+
│ └── default.conf
|
|
57
|
+
└── ssl
|
|
58
|
+
└── README
|
|
62
59
|
```
|
|
63
60
|
|
|
64
61
|
### Running
|
|
@@ -330,6 +327,13 @@ And the folder structure would look like this:
|
|
|
330
327
|
|
|
331
328
|
> Format according to https://keepachangelog.com
|
|
332
329
|
|
|
330
|
+
### v0.13.0
|
|
331
|
+
#### Changed
|
|
332
|
+
- adjust node requirements
|
|
333
|
+
- upgrade multiple packages
|
|
334
|
+
- replace tap with native node tests
|
|
335
|
+
- migrate to pnpm
|
|
336
|
+
|
|
333
337
|
### v0.12.11
|
|
334
338
|
#### Fixed
|
|
335
339
|
- fix "'version' is obsolete" bug
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uscreen.de/dev-service",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.1",
|
|
4
4
|
"description": "cli to manage services in dev repos",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -23,16 +23,7 @@
|
|
|
23
23
|
"author": "Martin Herting <herting@uscreen.de>",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"engines": {
|
|
26
|
-
"node": ">=
|
|
27
|
-
},
|
|
28
|
-
"scripts": {
|
|
29
|
-
"test": "c8 tap",
|
|
30
|
-
"test:cov": "c8 --reporter=html --reporter=text tap",
|
|
31
|
-
"test:ci": "c8 --reporter=lcovonly tap",
|
|
32
|
-
"prepare": "husky install"
|
|
33
|
-
},
|
|
34
|
-
"gitHooks": {
|
|
35
|
-
"pre-commit": "lint-staged"
|
|
26
|
+
"node": ">=20"
|
|
36
27
|
},
|
|
37
28
|
"files": [
|
|
38
29
|
"bin/",
|
|
@@ -40,22 +31,22 @@
|
|
|
40
31
|
"templates"
|
|
41
32
|
],
|
|
42
33
|
"devDependencies": {
|
|
43
|
-
"@uscreen.de/eslint-config-prettystandard-node": "^0.2.
|
|
44
|
-
"c8": "^10.1.3"
|
|
45
|
-
"husky": ">=8.0.2",
|
|
46
|
-
"lint-staged": ">=13.0.3",
|
|
47
|
-
"tap": "^16.3.2"
|
|
34
|
+
"@uscreen.de/eslint-config-prettystandard-node": "^0.2.12",
|
|
35
|
+
"c8": "^10.1.3"
|
|
48
36
|
},
|
|
49
37
|
"dependencies": {
|
|
50
|
-
"chalk": "^
|
|
51
|
-
"commander": "^
|
|
52
|
-
"fs-extra": "^11.
|
|
53
|
-
"nanoid": "^5.
|
|
54
|
-
"parse-json": "^8.0
|
|
55
|
-
"read-pkg": "^
|
|
56
|
-
"yaml": "^2.1
|
|
38
|
+
"chalk": "^5.6.2",
|
|
39
|
+
"commander": "^14.0.2",
|
|
40
|
+
"fs-extra": "^11.3.2",
|
|
41
|
+
"nanoid": "^5.1.6",
|
|
42
|
+
"parse-json": "^8.3.0",
|
|
43
|
+
"read-pkg": "^10.0.0",
|
|
44
|
+
"yaml": "^2.8.1"
|
|
57
45
|
},
|
|
58
|
-
"
|
|
59
|
-
"
|
|
46
|
+
"scripts": {
|
|
47
|
+
"preinstall": "npx only-allow pnpm",
|
|
48
|
+
"test": "node --test --test-concurrency=1 --test-reporter spec",
|
|
49
|
+
"test:cov": "c8 --reporter=html --reporter=text node --test --test-concurrency=1",
|
|
50
|
+
"test:ci": "c8 --reporter=lcov --reporter=text node --test --test-concurrency=1"
|
|
60
51
|
}
|
|
61
|
-
}
|
|
52
|
+
}
|