dargstack_rgen 0.8.3 → 0.8.4
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/.github/workflows/docker.yml +3 -3
- package/.github/workflows/release-schedule.yml +1 -1
- package/CHANGELOG.md +7 -0
- package/Dockerfile +6 -6
- package/package.json +9 -9
- package/pnpm-lock.yaml +116 -134
|
@@ -9,18 +9,18 @@ on:
|
|
|
9
9
|
jobs:
|
|
10
10
|
build:
|
|
11
11
|
name: Build
|
|
12
|
-
uses: dargmuesli/github-actions/.github/workflows/docker.yml@0.
|
|
12
|
+
uses: dargmuesli/github-actions/.github/workflows/docker.yml@0.23.1
|
|
13
13
|
secrets:
|
|
14
14
|
DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
|
15
15
|
DOCKER_HUB_USER_NAME: ${{ secrets.DOCKER_HUB_USER_NAME }}
|
|
16
16
|
release-semantic:
|
|
17
17
|
needs: build
|
|
18
18
|
name: Release (semantic)
|
|
19
|
-
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@0.
|
|
19
|
+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@0.23.1
|
|
20
20
|
secrets:
|
|
21
21
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
22
22
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
23
23
|
release-assets:
|
|
24
24
|
needs: release-semantic
|
|
25
25
|
name: Release (assets)
|
|
26
|
-
uses: dargmuesli/github-actions/.github/workflows/release-assets.yml@0.
|
|
26
|
+
uses: dargmuesli/github-actions/.github/workflows/release-assets.yml@0.23.1
|
|
@@ -7,7 +7,7 @@ on:
|
|
|
7
7
|
jobs:
|
|
8
8
|
release-schedule:
|
|
9
9
|
name: Release (scheduled)
|
|
10
|
-
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@0.
|
|
10
|
+
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@0.23.1
|
|
11
11
|
secrets:
|
|
12
12
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
13
13
|
with:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.8.4](https://github.com/dargmuesli/dargstack_rgen/compare/0.8.3...0.8.4) (2023-01-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **release:** schedule release ([7e2578d](https://github.com/dargmuesli/dargstack_rgen/commit/7e2578da5f4f177667f89218549410e11a558358))
|
|
7
|
+
|
|
1
8
|
## [0.8.3](https://github.com/dargmuesli/dargstack_rgen/compare/0.8.2...0.8.3) (2023-01-03)
|
|
2
9
|
|
|
3
10
|
|
package/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM node:19.
|
|
1
|
+
FROM node:19.4.0-alpine@sha256:ab3603cb7934b21f1ffb522b1a1d538809516c6e4cd73b144716bc1830aad1a6 AS development
|
|
2
2
|
|
|
3
3
|
WORKDIR /srv/app/
|
|
4
4
|
|
|
@@ -7,7 +7,7 @@ VOLUME /srv/app
|
|
|
7
7
|
ENTRYPOINT ["node", "./src/generator.cjs"]
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
FROM node:19.
|
|
10
|
+
FROM node:19.4.0-alpine@sha256:ab3603cb7934b21f1ffb522b1a1d538809516c6e4cd73b144716bc1830aad1a6 AS prepare
|
|
11
11
|
|
|
12
12
|
WORKDIR /srv/app/
|
|
13
13
|
|
|
@@ -21,7 +21,7 @@ COPY ./ ./
|
|
|
21
21
|
RUN pnpm install --offline
|
|
22
22
|
|
|
23
23
|
|
|
24
|
-
FROM node:19.
|
|
24
|
+
FROM node:19.4.0-alpine@sha256:ab3603cb7934b21f1ffb522b1a1d538809516c6e4cd73b144716bc1830aad1a6 AS build
|
|
25
25
|
|
|
26
26
|
WORKDIR /srv/app/
|
|
27
27
|
|
|
@@ -33,7 +33,7 @@ RUN npm install -g pnpm && \
|
|
|
33
33
|
pnpm install --offline
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
FROM node:19.
|
|
36
|
+
FROM node:19.4.0-alpine@sha256:ab3603cb7934b21f1ffb522b1a1d538809516c6e4cd73b144716bc1830aad1a6 AS test
|
|
37
37
|
|
|
38
38
|
WORKDIR /srv/app/
|
|
39
39
|
|
|
@@ -43,7 +43,7 @@ RUN npm install -g pnpm && \
|
|
|
43
43
|
pnpm run test
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
FROM node:19.
|
|
46
|
+
FROM node:19.4.0-alpine@sha256:ab3603cb7934b21f1ffb522b1a1d538809516c6e4cd73b144716bc1830aad1a6 AS collect
|
|
47
47
|
|
|
48
48
|
WORKDIR /srv/app/
|
|
49
49
|
|
|
@@ -51,7 +51,7 @@ COPY --from=build /srv/app/ /srv/app/
|
|
|
51
51
|
COPY --from=test /srv/app/package.json /tmp/package.json
|
|
52
52
|
|
|
53
53
|
|
|
54
|
-
FROM node:19.
|
|
54
|
+
FROM node:19.4.0-alpine@sha256:ab3603cb7934b21f1ffb522b1a1d538809516c6e4cd73b144716bc1830aad1a6 AS production
|
|
55
55
|
|
|
56
56
|
WORKDIR /srv/app/
|
|
57
57
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dargstack_rgen",
|
|
3
|
-
"version": "0.8.
|
|
4
|
-
"scheduleVersion": "0.
|
|
3
|
+
"version": "0.8.4",
|
|
4
|
+
"scheduleVersion": "0.8.4",
|
|
5
5
|
"description": "Generates a DargStack stack project readme.",
|
|
6
6
|
"main": "src/generator.cjs",
|
|
7
7
|
"repository": "https://github.com/dargmuesli/dargstack_rgen.git",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": "19"
|
|
16
16
|
},
|
|
17
|
-
"packageManager": "pnpm@7.
|
|
17
|
+
"packageManager": "pnpm@7.25.0",
|
|
18
18
|
"scripts": {
|
|
19
19
|
"lint": "eslint --ext .js,.cjs .",
|
|
20
20
|
"prepare": "if [ \"$NODE_ENV\" != \"production\" ]; then husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks; fi",
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"yargs": "17.6.2"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@commitlint/cli": "17.
|
|
32
|
-
"@commitlint/config-conventional": "17.
|
|
33
|
-
"eslint": "8.
|
|
34
|
-
"eslint-config-prettier": "8.
|
|
31
|
+
"@commitlint/cli": "17.4.2",
|
|
32
|
+
"@commitlint/config-conventional": "17.4.2",
|
|
33
|
+
"eslint": "8.32.0",
|
|
34
|
+
"eslint-config-prettier": "8.6.0",
|
|
35
35
|
"eslint-plugin-node": "11.1.0",
|
|
36
36
|
"eslint-plugin-prettier": "4.2.1",
|
|
37
|
-
"husky": "8.0.
|
|
38
|
-
"prettier": "2.8.
|
|
37
|
+
"husky": "8.0.3",
|
|
38
|
+
"prettier": "2.8.3",
|
|
39
39
|
"shx": "0.3.4"
|
|
40
40
|
}
|
|
41
41
|
}
|
package/pnpm-lock.yaml
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
lockfileVersion: 5.4
|
|
2
2
|
|
|
3
3
|
specifiers:
|
|
4
|
-
'@commitlint/cli': 17.
|
|
5
|
-
'@commitlint/config-conventional': 17.
|
|
4
|
+
'@commitlint/cli': 17.4.2
|
|
5
|
+
'@commitlint/config-conventional': 17.4.2
|
|
6
6
|
deepmerge: 4.2.2
|
|
7
7
|
diff: 5.1.0
|
|
8
|
-
eslint: 8.
|
|
9
|
-
eslint-config-prettier: 8.
|
|
8
|
+
eslint: 8.32.0
|
|
9
|
+
eslint-config-prettier: 8.6.0
|
|
10
10
|
eslint-plugin-node: 11.1.0
|
|
11
11
|
eslint-plugin-prettier: 4.2.1
|
|
12
|
-
husky: 8.0.
|
|
12
|
+
husky: 8.0.3
|
|
13
13
|
json2md: 2.0.0
|
|
14
|
-
prettier: 2.8.
|
|
14
|
+
prettier: 2.8.3
|
|
15
15
|
shx: 0.3.4
|
|
16
16
|
yaml: 2.2.1
|
|
17
17
|
yargs: 17.6.2
|
|
@@ -24,14 +24,14 @@ dependencies:
|
|
|
24
24
|
yargs: 17.6.2
|
|
25
25
|
|
|
26
26
|
devDependencies:
|
|
27
|
-
'@commitlint/cli': 17.
|
|
28
|
-
'@commitlint/config-conventional': 17.
|
|
29
|
-
eslint: 8.
|
|
30
|
-
eslint-config-prettier: 8.
|
|
31
|
-
eslint-plugin-node: 11.1.0_eslint@8.
|
|
32
|
-
eslint-plugin-prettier: 4.2.
|
|
33
|
-
husky: 8.0.
|
|
34
|
-
prettier: 2.8.
|
|
27
|
+
'@commitlint/cli': 17.4.2
|
|
28
|
+
'@commitlint/config-conventional': 17.4.2
|
|
29
|
+
eslint: 8.32.0
|
|
30
|
+
eslint-config-prettier: 8.6.0_eslint@8.32.0
|
|
31
|
+
eslint-plugin-node: 11.1.0_eslint@8.32.0
|
|
32
|
+
eslint-plugin-prettier: 4.2.1_cn4lalcyadplruoxa5mhp7j3dq
|
|
33
|
+
husky: 8.0.3
|
|
34
|
+
prettier: 2.8.3
|
|
35
35
|
shx: 0.3.4
|
|
36
36
|
|
|
37
37
|
packages:
|
|
@@ -57,16 +57,16 @@ packages:
|
|
|
57
57
|
js-tokens: 4.0.0
|
|
58
58
|
dev: true
|
|
59
59
|
|
|
60
|
-
/@commitlint/cli/17.
|
|
61
|
-
resolution: {integrity: sha512
|
|
60
|
+
/@commitlint/cli/17.4.2:
|
|
61
|
+
resolution: {integrity: sha512-0rPGJ2O1owhpxMIXL9YJ2CgPkdrFLKZElIZHXDN8L8+qWK1DGH7Q7IelBT1pchXTYTuDlqkOTdh//aTvT3bSUA==}
|
|
62
62
|
engines: {node: '>=v14'}
|
|
63
63
|
hasBin: true
|
|
64
64
|
dependencies:
|
|
65
|
-
'@commitlint/format': 17.
|
|
66
|
-
'@commitlint/lint': 17.
|
|
67
|
-
'@commitlint/load': 17.
|
|
68
|
-
'@commitlint/read': 17.2
|
|
69
|
-
'@commitlint/types': 17.
|
|
65
|
+
'@commitlint/format': 17.4.0
|
|
66
|
+
'@commitlint/lint': 17.4.2
|
|
67
|
+
'@commitlint/load': 17.4.2
|
|
68
|
+
'@commitlint/read': 17.4.2
|
|
69
|
+
'@commitlint/types': 17.4.0
|
|
70
70
|
execa: 5.1.1
|
|
71
71
|
lodash.isfunction: 3.0.9
|
|
72
72
|
resolve-from: 5.0.0
|
|
@@ -77,26 +77,26 @@ packages:
|
|
|
77
77
|
- '@swc/wasm'
|
|
78
78
|
dev: true
|
|
79
79
|
|
|
80
|
-
/@commitlint/config-conventional/17.
|
|
81
|
-
resolution: {integrity: sha512-
|
|
80
|
+
/@commitlint/config-conventional/17.4.2:
|
|
81
|
+
resolution: {integrity: sha512-JVo1moSj5eDMoql159q8zKCU8lkOhQ+b23Vl3LVVrS6PXDLQIELnJ34ChQmFVbBdSSRNAbbXnRDhosFU+wnuHw==}
|
|
82
82
|
engines: {node: '>=v14'}
|
|
83
83
|
dependencies:
|
|
84
84
|
conventional-changelog-conventionalcommits: 5.0.0
|
|
85
85
|
dev: true
|
|
86
86
|
|
|
87
|
-
/@commitlint/config-validator/17.
|
|
88
|
-
resolution: {integrity: sha512-
|
|
87
|
+
/@commitlint/config-validator/17.4.0:
|
|
88
|
+
resolution: {integrity: sha512-Sa/+8KNpDXz4zT4bVbz2fpFjvgkPO6u2V2fP4TKgt6FjmOw2z3eEX859vtfeaTav/ukBw0/0jr+5ZTZp9zCBhA==}
|
|
89
89
|
engines: {node: '>=v14'}
|
|
90
90
|
dependencies:
|
|
91
|
-
'@commitlint/types': 17.
|
|
91
|
+
'@commitlint/types': 17.4.0
|
|
92
92
|
ajv: 8.11.2
|
|
93
93
|
dev: true
|
|
94
94
|
|
|
95
|
-
/@commitlint/ensure/17.
|
|
96
|
-
resolution: {integrity: sha512-
|
|
95
|
+
/@commitlint/ensure/17.4.0:
|
|
96
|
+
resolution: {integrity: sha512-7oAxt25je0jeQ/E0O/M8L3ADb1Cvweu/5lc/kYF8g/kXatI0wxGE5La52onnAUAWeWlsuvBNar15WcrmDmr5Mw==}
|
|
97
97
|
engines: {node: '>=v14'}
|
|
98
98
|
dependencies:
|
|
99
|
-
'@commitlint/types': 17.
|
|
99
|
+
'@commitlint/types': 17.4.0
|
|
100
100
|
lodash.camelcase: 4.3.0
|
|
101
101
|
lodash.kebabcase: 4.1.1
|
|
102
102
|
lodash.snakecase: 4.1.1
|
|
@@ -104,122 +104,122 @@ packages:
|
|
|
104
104
|
lodash.upperfirst: 4.3.1
|
|
105
105
|
dev: true
|
|
106
106
|
|
|
107
|
-
/@commitlint/execute-rule/17.
|
|
108
|
-
resolution: {integrity: sha512-
|
|
107
|
+
/@commitlint/execute-rule/17.4.0:
|
|
108
|
+
resolution: {integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==}
|
|
109
109
|
engines: {node: '>=v14'}
|
|
110
110
|
dev: true
|
|
111
111
|
|
|
112
|
-
/@commitlint/format/17.
|
|
113
|
-
resolution: {integrity: sha512-
|
|
112
|
+
/@commitlint/format/17.4.0:
|
|
113
|
+
resolution: {integrity: sha512-Z2bWAU5+f1YZh9W76c84J8iLIWIvvm+mzqogTz0Nsc1x6EHW0Z2gI38g5HAjB0r0I3ZjR15IDEJKhsxyblcyhA==}
|
|
114
114
|
engines: {node: '>=v14'}
|
|
115
115
|
dependencies:
|
|
116
|
-
'@commitlint/types': 17.
|
|
116
|
+
'@commitlint/types': 17.4.0
|
|
117
117
|
chalk: 4.1.2
|
|
118
118
|
dev: true
|
|
119
119
|
|
|
120
|
-
/@commitlint/is-ignored/17.2
|
|
121
|
-
resolution: {integrity: sha512-
|
|
120
|
+
/@commitlint/is-ignored/17.4.2:
|
|
121
|
+
resolution: {integrity: sha512-1b2Y2qJ6n7bHG9K6h8S4lBGUl6kc7mMhJN9gy1SQfUZqe92ToDjUTtgNWb6LbzR1X8Cq4SEus4VU8Z/riEa94Q==}
|
|
122
122
|
engines: {node: '>=v14'}
|
|
123
123
|
dependencies:
|
|
124
|
-
'@commitlint/types': 17.
|
|
125
|
-
semver: 7.3.
|
|
124
|
+
'@commitlint/types': 17.4.0
|
|
125
|
+
semver: 7.3.8
|
|
126
126
|
dev: true
|
|
127
127
|
|
|
128
|
-
/@commitlint/lint/17.
|
|
129
|
-
resolution: {integrity: sha512-
|
|
128
|
+
/@commitlint/lint/17.4.2:
|
|
129
|
+
resolution: {integrity: sha512-HcymabrdBhsDMNzIv146+ZPNBPBK5gMNsVH+el2lCagnYgCi/4ixrHooeVyS64Fgce2K26+MC7OQ4vVH8wQWVw==}
|
|
130
130
|
engines: {node: '>=v14'}
|
|
131
131
|
dependencies:
|
|
132
|
-
'@commitlint/is-ignored': 17.2
|
|
133
|
-
'@commitlint/parse': 17.2
|
|
134
|
-
'@commitlint/rules': 17.
|
|
135
|
-
'@commitlint/types': 17.
|
|
132
|
+
'@commitlint/is-ignored': 17.4.2
|
|
133
|
+
'@commitlint/parse': 17.4.2
|
|
134
|
+
'@commitlint/rules': 17.4.2
|
|
135
|
+
'@commitlint/types': 17.4.0
|
|
136
136
|
dev: true
|
|
137
137
|
|
|
138
|
-
/@commitlint/load/17.
|
|
139
|
-
resolution: {integrity: sha512-
|
|
138
|
+
/@commitlint/load/17.4.2:
|
|
139
|
+
resolution: {integrity: sha512-Si++F85rJ9t4hw6JcOw1i2h0fdpdFQt0YKwjuK4bk9KhFjyFkRxvR3SB2dPaMs+EwWlDrDBGL+ygip1QD6gmPw==}
|
|
140
140
|
engines: {node: '>=v14'}
|
|
141
141
|
dependencies:
|
|
142
|
-
'@commitlint/config-validator': 17.
|
|
143
|
-
'@commitlint/execute-rule': 17.
|
|
144
|
-
'@commitlint/resolve-extends': 17.
|
|
145
|
-
'@commitlint/types': 17.
|
|
146
|
-
'@types/node':
|
|
142
|
+
'@commitlint/config-validator': 17.4.0
|
|
143
|
+
'@commitlint/execute-rule': 17.4.0
|
|
144
|
+
'@commitlint/resolve-extends': 17.4.0
|
|
145
|
+
'@commitlint/types': 17.4.0
|
|
146
|
+
'@types/node': 18.11.18
|
|
147
147
|
chalk: 4.1.2
|
|
148
|
-
cosmiconfig:
|
|
149
|
-
cosmiconfig-typescript-loader: 4.3.
|
|
148
|
+
cosmiconfig: 8.0.0
|
|
149
|
+
cosmiconfig-typescript-loader: 4.3.0_bxtyj3et3xbsdyxhh3oblnfbj4
|
|
150
150
|
lodash.isplainobject: 4.0.6
|
|
151
151
|
lodash.merge: 4.6.2
|
|
152
152
|
lodash.uniq: 4.5.0
|
|
153
153
|
resolve-from: 5.0.0
|
|
154
|
-
ts-node: 10.9.
|
|
154
|
+
ts-node: 10.9.1_awa2wsr5thmg3i7jqycphctjfq
|
|
155
155
|
typescript: 4.9.4
|
|
156
156
|
transitivePeerDependencies:
|
|
157
157
|
- '@swc/core'
|
|
158
158
|
- '@swc/wasm'
|
|
159
159
|
dev: true
|
|
160
160
|
|
|
161
|
-
/@commitlint/message/17.2
|
|
162
|
-
resolution: {integrity: sha512
|
|
161
|
+
/@commitlint/message/17.4.2:
|
|
162
|
+
resolution: {integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==}
|
|
163
163
|
engines: {node: '>=v14'}
|
|
164
164
|
dev: true
|
|
165
165
|
|
|
166
|
-
/@commitlint/parse/17.2
|
|
167
|
-
resolution: {integrity: sha512-
|
|
166
|
+
/@commitlint/parse/17.4.2:
|
|
167
|
+
resolution: {integrity: sha512-DK4EwqhxfXpyCA+UH8TBRIAXAfmmX4q9QRBz/2h9F9sI91yt6mltTrL6TKURMcjUVmgaB80wgS9QybNIyVBIJA==}
|
|
168
168
|
engines: {node: '>=v14'}
|
|
169
169
|
dependencies:
|
|
170
|
-
'@commitlint/types': 17.
|
|
170
|
+
'@commitlint/types': 17.4.0
|
|
171
171
|
conventional-changelog-angular: 5.0.13
|
|
172
172
|
conventional-commits-parser: 3.2.4
|
|
173
173
|
dev: true
|
|
174
174
|
|
|
175
|
-
/@commitlint/read/17.2
|
|
176
|
-
resolution: {integrity: sha512-
|
|
175
|
+
/@commitlint/read/17.4.2:
|
|
176
|
+
resolution: {integrity: sha512-hasYOdbhEg+W4hi0InmXHxtD/1favB4WdwyFxs1eOy/DvMw6+2IZBmATgGOlqhahsypk4kChhxjAFJAZ2F+JBg==}
|
|
177
177
|
engines: {node: '>=v14'}
|
|
178
178
|
dependencies:
|
|
179
|
-
'@commitlint/top-level': 17.
|
|
180
|
-
'@commitlint/types': 17.
|
|
181
|
-
fs-extra:
|
|
179
|
+
'@commitlint/top-level': 17.4.0
|
|
180
|
+
'@commitlint/types': 17.4.0
|
|
181
|
+
fs-extra: 11.1.0
|
|
182
182
|
git-raw-commits: 2.0.11
|
|
183
183
|
minimist: 1.2.7
|
|
184
184
|
dev: true
|
|
185
185
|
|
|
186
|
-
/@commitlint/resolve-extends/17.
|
|
187
|
-
resolution: {integrity: sha512-
|
|
186
|
+
/@commitlint/resolve-extends/17.4.0:
|
|
187
|
+
resolution: {integrity: sha512-3JsmwkrCzoK8sO22AzLBvNEvC1Pmdn/65RKXzEtQMy6oYMl0Snrq97a5bQQEFETF0VsvbtUuKttLqqgn99OXRQ==}
|
|
188
188
|
engines: {node: '>=v14'}
|
|
189
189
|
dependencies:
|
|
190
|
-
'@commitlint/config-validator': 17.
|
|
191
|
-
'@commitlint/types': 17.
|
|
190
|
+
'@commitlint/config-validator': 17.4.0
|
|
191
|
+
'@commitlint/types': 17.4.0
|
|
192
192
|
import-fresh: 3.3.0
|
|
193
193
|
lodash.mergewith: 4.6.2
|
|
194
194
|
resolve-from: 5.0.0
|
|
195
195
|
resolve-global: 1.0.0
|
|
196
196
|
dev: true
|
|
197
197
|
|
|
198
|
-
/@commitlint/rules/17.
|
|
199
|
-
resolution: {integrity: sha512-
|
|
198
|
+
/@commitlint/rules/17.4.2:
|
|
199
|
+
resolution: {integrity: sha512-OGrPsMb9Fx3/bZ64/EzJehY9YDSGWzp81Pj+zJiY+r/NSgJI3nUYdlS37jykNIugzazdEXfMtQ10kmA+Kx2pZQ==}
|
|
200
200
|
engines: {node: '>=v14'}
|
|
201
201
|
dependencies:
|
|
202
|
-
'@commitlint/ensure': 17.
|
|
203
|
-
'@commitlint/message': 17.2
|
|
204
|
-
'@commitlint/to-lines': 17.
|
|
205
|
-
'@commitlint/types': 17.
|
|
202
|
+
'@commitlint/ensure': 17.4.0
|
|
203
|
+
'@commitlint/message': 17.4.2
|
|
204
|
+
'@commitlint/to-lines': 17.4.0
|
|
205
|
+
'@commitlint/types': 17.4.0
|
|
206
206
|
execa: 5.1.1
|
|
207
207
|
dev: true
|
|
208
208
|
|
|
209
|
-
/@commitlint/to-lines/17.
|
|
210
|
-
resolution: {integrity: sha512-
|
|
209
|
+
/@commitlint/to-lines/17.4.0:
|
|
210
|
+
resolution: {integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==}
|
|
211
211
|
engines: {node: '>=v14'}
|
|
212
212
|
dev: true
|
|
213
213
|
|
|
214
|
-
/@commitlint/top-level/17.
|
|
215
|
-
resolution: {integrity: sha512
|
|
214
|
+
/@commitlint/top-level/17.4.0:
|
|
215
|
+
resolution: {integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==}
|
|
216
216
|
engines: {node: '>=v14'}
|
|
217
217
|
dependencies:
|
|
218
218
|
find-up: 5.0.0
|
|
219
219
|
dev: true
|
|
220
220
|
|
|
221
|
-
/@commitlint/types/17.
|
|
222
|
-
resolution: {integrity: sha512-
|
|
221
|
+
/@commitlint/types/17.4.0:
|
|
222
|
+
resolution: {integrity: sha512-2NjAnq5IcxY9kXtUeO2Ac0aPpvkuOmwbH/BxIm36XXK5LtWFObWJWjXOA+kcaABMrthjWu6la+FUpyYFMHRvbA==}
|
|
223
223
|
engines: {node: '>=v14'}
|
|
224
224
|
dependencies:
|
|
225
225
|
chalk: 4.1.2
|
|
@@ -326,18 +326,14 @@ packages:
|
|
|
326
326
|
resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
|
|
327
327
|
dev: true
|
|
328
328
|
|
|
329
|
-
/@types/node/
|
|
330
|
-
resolution: {integrity: sha512-
|
|
329
|
+
/@types/node/18.11.18:
|
|
330
|
+
resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==}
|
|
331
331
|
dev: true
|
|
332
332
|
|
|
333
333
|
/@types/normalize-package-data/2.4.1:
|
|
334
334
|
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
|
|
335
335
|
dev: true
|
|
336
336
|
|
|
337
|
-
/@types/parse-json/4.0.0:
|
|
338
|
-
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
|
|
339
|
-
dev: true
|
|
340
|
-
|
|
341
337
|
/JSONStream/1.3.5:
|
|
342
338
|
resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
|
|
343
339
|
hasBin: true
|
|
@@ -532,7 +528,7 @@ packages:
|
|
|
532
528
|
through2: 4.0.2
|
|
533
529
|
dev: true
|
|
534
530
|
|
|
535
|
-
/cosmiconfig-typescript-loader/4.3.
|
|
531
|
+
/cosmiconfig-typescript-loader/4.3.0_bxtyj3et3xbsdyxhh3oblnfbj4:
|
|
536
532
|
resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==}
|
|
537
533
|
engines: {node: '>=12', npm: '>=6'}
|
|
538
534
|
peerDependencies:
|
|
@@ -541,21 +537,20 @@ packages:
|
|
|
541
537
|
ts-node: '>=10'
|
|
542
538
|
typescript: '>=3'
|
|
543
539
|
dependencies:
|
|
544
|
-
'@types/node':
|
|
545
|
-
cosmiconfig:
|
|
546
|
-
ts-node: 10.9.
|
|
540
|
+
'@types/node': 18.11.18
|
|
541
|
+
cosmiconfig: 8.0.0
|
|
542
|
+
ts-node: 10.9.1_awa2wsr5thmg3i7jqycphctjfq
|
|
547
543
|
typescript: 4.9.4
|
|
548
544
|
dev: true
|
|
549
545
|
|
|
550
|
-
/cosmiconfig/
|
|
551
|
-
resolution: {integrity: sha512-
|
|
552
|
-
engines: {node: '>=
|
|
546
|
+
/cosmiconfig/8.0.0:
|
|
547
|
+
resolution: {integrity: sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==}
|
|
548
|
+
engines: {node: '>=14'}
|
|
553
549
|
dependencies:
|
|
554
|
-
'@types/parse-json': 4.0.0
|
|
555
550
|
import-fresh: 3.3.0
|
|
551
|
+
js-yaml: 4.1.0
|
|
556
552
|
parse-json: 5.2.0
|
|
557
553
|
path-type: 4.0.0
|
|
558
|
-
yaml: 1.10.2
|
|
559
554
|
dev: true
|
|
560
555
|
|
|
561
556
|
/create-require/1.1.1:
|
|
@@ -657,34 +652,34 @@ packages:
|
|
|
657
652
|
engines: {node: '>=10'}
|
|
658
653
|
dev: true
|
|
659
654
|
|
|
660
|
-
/eslint-config-prettier/8.
|
|
661
|
-
resolution: {integrity: sha512-
|
|
655
|
+
/eslint-config-prettier/8.6.0_eslint@8.32.0:
|
|
656
|
+
resolution: {integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==}
|
|
662
657
|
hasBin: true
|
|
663
658
|
peerDependencies:
|
|
664
659
|
eslint: '>=7.0.0'
|
|
665
660
|
dependencies:
|
|
666
|
-
eslint: 8.
|
|
661
|
+
eslint: 8.32.0
|
|
667
662
|
dev: true
|
|
668
663
|
|
|
669
|
-
/eslint-plugin-es/3.0.1_eslint@8.
|
|
664
|
+
/eslint-plugin-es/3.0.1_eslint@8.32.0:
|
|
670
665
|
resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==}
|
|
671
666
|
engines: {node: '>=8.10.0'}
|
|
672
667
|
peerDependencies:
|
|
673
668
|
eslint: '>=4.19.1'
|
|
674
669
|
dependencies:
|
|
675
|
-
eslint: 8.
|
|
670
|
+
eslint: 8.32.0
|
|
676
671
|
eslint-utils: 2.1.0
|
|
677
672
|
regexpp: 3.2.0
|
|
678
673
|
dev: true
|
|
679
674
|
|
|
680
|
-
/eslint-plugin-node/11.1.0_eslint@8.
|
|
675
|
+
/eslint-plugin-node/11.1.0_eslint@8.32.0:
|
|
681
676
|
resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==}
|
|
682
677
|
engines: {node: '>=8.10.0'}
|
|
683
678
|
peerDependencies:
|
|
684
679
|
eslint: '>=5.16.0'
|
|
685
680
|
dependencies:
|
|
686
|
-
eslint: 8.
|
|
687
|
-
eslint-plugin-es: 3.0.1_eslint@8.
|
|
681
|
+
eslint: 8.32.0
|
|
682
|
+
eslint-plugin-es: 3.0.1_eslint@8.32.0
|
|
688
683
|
eslint-utils: 2.1.0
|
|
689
684
|
ignore: 5.2.4
|
|
690
685
|
minimatch: 3.1.2
|
|
@@ -692,7 +687,7 @@ packages:
|
|
|
692
687
|
semver: 6.3.0
|
|
693
688
|
dev: true
|
|
694
689
|
|
|
695
|
-
/eslint-plugin-prettier/4.2.
|
|
690
|
+
/eslint-plugin-prettier/4.2.1_cn4lalcyadplruoxa5mhp7j3dq:
|
|
696
691
|
resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
|
|
697
692
|
engines: {node: '>=12.0.0'}
|
|
698
693
|
peerDependencies:
|
|
@@ -703,9 +698,9 @@ packages:
|
|
|
703
698
|
eslint-config-prettier:
|
|
704
699
|
optional: true
|
|
705
700
|
dependencies:
|
|
706
|
-
eslint: 8.
|
|
707
|
-
eslint-config-prettier: 8.
|
|
708
|
-
prettier: 2.8.
|
|
701
|
+
eslint: 8.32.0
|
|
702
|
+
eslint-config-prettier: 8.6.0_eslint@8.32.0
|
|
703
|
+
prettier: 2.8.3
|
|
709
704
|
prettier-linter-helpers: 1.0.0
|
|
710
705
|
dev: true
|
|
711
706
|
|
|
@@ -724,13 +719,13 @@ packages:
|
|
|
724
719
|
eslint-visitor-keys: 1.3.0
|
|
725
720
|
dev: true
|
|
726
721
|
|
|
727
|
-
/eslint-utils/3.0.0_eslint@8.
|
|
722
|
+
/eslint-utils/3.0.0_eslint@8.32.0:
|
|
728
723
|
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
|
|
729
724
|
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
|
|
730
725
|
peerDependencies:
|
|
731
726
|
eslint: '>=5'
|
|
732
727
|
dependencies:
|
|
733
|
-
eslint: 8.
|
|
728
|
+
eslint: 8.32.0
|
|
734
729
|
eslint-visitor-keys: 2.1.0
|
|
735
730
|
dev: true
|
|
736
731
|
|
|
@@ -749,8 +744,8 @@ packages:
|
|
|
749
744
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
750
745
|
dev: true
|
|
751
746
|
|
|
752
|
-
/eslint/8.
|
|
753
|
-
resolution: {integrity: sha512-
|
|
747
|
+
/eslint/8.32.0:
|
|
748
|
+
resolution: {integrity: sha512-nETVXpnthqKPFyuY2FNjz/bEd6nbosRgKbkgS/y1C7LJop96gYHWpiguLecMHQ2XCPxn77DS0P+68WzG6vkZSQ==}
|
|
754
749
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
755
750
|
hasBin: true
|
|
756
751
|
dependencies:
|
|
@@ -765,7 +760,7 @@ packages:
|
|
|
765
760
|
doctrine: 3.0.0
|
|
766
761
|
escape-string-regexp: 4.0.0
|
|
767
762
|
eslint-scope: 7.1.1
|
|
768
|
-
eslint-utils: 3.0.0_eslint@8.
|
|
763
|
+
eslint-utils: 3.0.0_eslint@8.32.0
|
|
769
764
|
eslint-visitor-keys: 3.3.0
|
|
770
765
|
espree: 9.4.1
|
|
771
766
|
esquery: 1.4.0
|
|
@@ -902,9 +897,9 @@ packages:
|
|
|
902
897
|
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
|
|
903
898
|
dev: true
|
|
904
899
|
|
|
905
|
-
/fs-extra/
|
|
906
|
-
resolution: {integrity: sha512-
|
|
907
|
-
engines: {node: '>=
|
|
900
|
+
/fs-extra/11.1.0:
|
|
901
|
+
resolution: {integrity: sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==}
|
|
902
|
+
engines: {node: '>=14.14'}
|
|
908
903
|
dependencies:
|
|
909
904
|
graceful-fs: 4.2.10
|
|
910
905
|
jsonfile: 6.1.0
|
|
@@ -1018,8 +1013,8 @@ packages:
|
|
|
1018
1013
|
engines: {node: '>=10.17.0'}
|
|
1019
1014
|
dev: true
|
|
1020
1015
|
|
|
1021
|
-
/husky/8.0.
|
|
1022
|
-
resolution: {integrity: sha512
|
|
1016
|
+
/husky/8.0.3:
|
|
1017
|
+
resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==}
|
|
1023
1018
|
engines: {node: '>=14'}
|
|
1024
1019
|
hasBin: true
|
|
1025
1020
|
dev: true
|
|
@@ -1469,8 +1464,8 @@ packages:
|
|
|
1469
1464
|
fast-diff: 1.2.0
|
|
1470
1465
|
dev: true
|
|
1471
1466
|
|
|
1472
|
-
/prettier/2.8.
|
|
1473
|
-
resolution: {integrity: sha512-
|
|
1467
|
+
/prettier/2.8.3:
|
|
1468
|
+
resolution: {integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==}
|
|
1474
1469
|
engines: {node: '>=10.13.0'}
|
|
1475
1470
|
hasBin: true
|
|
1476
1471
|
dev: true
|
|
@@ -1609,14 +1604,6 @@ packages:
|
|
|
1609
1604
|
hasBin: true
|
|
1610
1605
|
dev: true
|
|
1611
1606
|
|
|
1612
|
-
/semver/7.3.7:
|
|
1613
|
-
resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==}
|
|
1614
|
-
engines: {node: '>=10'}
|
|
1615
|
-
hasBin: true
|
|
1616
|
-
dependencies:
|
|
1617
|
-
lru-cache: 6.0.0
|
|
1618
|
-
dev: true
|
|
1619
|
-
|
|
1620
1607
|
/semver/7.3.8:
|
|
1621
1608
|
resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==}
|
|
1622
1609
|
engines: {node: '>=10'}
|
|
@@ -1768,7 +1755,7 @@ packages:
|
|
|
1768
1755
|
engines: {node: '>=8'}
|
|
1769
1756
|
dev: true
|
|
1770
1757
|
|
|
1771
|
-
/ts-node/10.9.
|
|
1758
|
+
/ts-node/10.9.1_awa2wsr5thmg3i7jqycphctjfq:
|
|
1772
1759
|
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
|
|
1773
1760
|
hasBin: true
|
|
1774
1761
|
peerDependencies:
|
|
@@ -1787,7 +1774,7 @@ packages:
|
|
|
1787
1774
|
'@tsconfig/node12': 1.0.11
|
|
1788
1775
|
'@tsconfig/node14': 1.0.3
|
|
1789
1776
|
'@tsconfig/node16': 1.0.3
|
|
1790
|
-
'@types/node':
|
|
1777
|
+
'@types/node': 18.11.18
|
|
1791
1778
|
acorn: 8.8.1
|
|
1792
1779
|
acorn-walk: 8.2.0
|
|
1793
1780
|
arg: 4.1.3
|
|
@@ -1891,11 +1878,6 @@ packages:
|
|
|
1891
1878
|
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
|
|
1892
1879
|
dev: true
|
|
1893
1880
|
|
|
1894
|
-
/yaml/1.10.2:
|
|
1895
|
-
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
|
|
1896
|
-
engines: {node: '>= 6'}
|
|
1897
|
-
dev: true
|
|
1898
|
-
|
|
1899
1881
|
/yaml/2.2.1:
|
|
1900
1882
|
resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==}
|
|
1901
1883
|
engines: {node: '>= 14'}
|