dargstack_rgen 0.7.16 → 0.8.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.
File without changes
@@ -7,35 +7,20 @@ on:
7
7
  types: [published]
8
8
 
9
9
  jobs:
10
- test:
11
- name: Test
12
- runs-on: ubuntu-latest
13
- steps:
14
- - name: Git checkout
15
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
16
- - name: Install
17
- run: |
18
- yarn install --frozen-lockfile
19
- - name: Test
20
- run: |
21
- yarn test
22
- docker:
23
- needs: test
24
- name: Docker
25
- uses: dargmuesli/github-actions/.github/workflows/docker.yml@0.20.4
10
+ build:
11
+ name: Build
12
+ uses: dargmuesli/github-actions/.github/workflows/docker.yml@0.22.0
26
13
  secrets:
27
14
  DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
28
15
  DOCKER_HUB_USER_NAME: ${{ secrets.DOCKER_HUB_USER_NAME }}
29
16
  release-semantic:
30
- needs: docker
31
- name: Semantic Release
32
- uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@0.20.4
17
+ needs: build
18
+ name: Release (semantic)
19
+ uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@0.22.0
33
20
  secrets:
34
21
  GH_TOKEN: ${{ secrets.GH_TOKEN }}
35
22
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
36
23
  release-assets:
37
24
  needs: release-semantic
38
- name: Release Assets
39
- uses: dargmuesli/github-actions/.github/workflows/release-assets.yml@0.20.4
40
- with:
41
- TARGET: development
25
+ name: Release (assets)
26
+ uses: dargmuesli/github-actions/.github/workflows/release-assets.yml@0.22.0
@@ -6,7 +6,9 @@ on:
6
6
 
7
7
  jobs:
8
8
  release-schedule:
9
- name: 'Release: Scheduled'
10
- uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@0.20.4
9
+ name: Release (scheduled)
10
+ uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@0.22.0
11
11
  secrets:
12
12
  GH_TOKEN: ${{ secrets.GH_TOKEN }}
13
+ with:
14
+ IS_DEBOUNCED: ${{ github.event_name != 'workflow_dispatch' }}
package/.husky/commit-msg CHANGED
@@ -2,4 +2,4 @@
2
2
  # shellcheck source=./_/husky.sh
3
3
  . "$(dirname "$0")/_/husky.sh"
4
4
 
5
- yarn commitlint --edit "$1"
5
+ pnpm commitlint --edit "$1"
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- 18
1
+ 19
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## [0.8.1](https://github.com/dargmuesli/dargstack_rgen/compare/0.8.0...0.8.1) (2022-12-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **docker:** correct build stage name ([ea0def1](https://github.com/dargmuesli/dargstack_rgen/commit/ea0def13de476b2c616863793446a1644eac349c))
7
+
8
+ # [0.8.0](https://github.com/dargmuesli/dargstack_rgen/compare/0.7.16...0.8.0) (2022-12-27)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **release:** schedule release ([1697ccd](https://github.com/dargmuesli/dargstack_rgen/commit/1697ccdc042cbc1be093e577d10e099baedb08da))
14
+
15
+
16
+ ### Features
17
+
18
+ * **docker:** move ci from action to dockerfile ([188590f](https://github.com/dargmuesli/dargstack_rgen/commit/188590f3b69e0ead3fc63de64705fae6ac116240))
19
+ * **package:** migrate to pnpm ([bf0a601](https://github.com/dargmuesli/dargstack_rgen/commit/bf0a6019a066843185062b8c941fc96f0f42cdc6))
20
+
1
21
  ## [0.7.16](https://github.com/dargmuesli/dargstack_rgen/compare/0.7.15...0.7.16) (2022-12-12)
2
22
 
3
23
 
package/Dockerfile CHANGED
@@ -1,16 +1,48 @@
1
- FROM node:19.2.0-alpine@sha256:80844b6643f239c87fceae51e6540eeb054fc7114d979703770ec75250dcd03b AS development
1
+ FROM node:19.3.0-alpine@sha256:3ed634e0f15d3e05a1918c3949963508f7ed56350cf94156e6d804ae577849fa AS development
2
2
 
3
- ENV HUSKY=0
3
+ WORKDIR /srv/app/
4
+
5
+ VOLUME /srv/app
6
+
7
+ ENTRYPOINT ["node", "./src/generator.cjs"]
8
+
9
+
10
+ FROM node:19.3.0-alpine@sha256:3ed634e0f15d3e05a1918c3949963508f7ed56350cf94156e6d804ae577849fa AS build
4
11
 
5
12
  WORKDIR /srv/app/
6
13
 
7
- # Copy package files first to increase build cache hits.
8
- COPY ./package.json ./yarn.lock ./
14
+ COPY ./pnpm-lock.yaml ./
9
15
 
10
- RUN yarn install && yarn cache clean
16
+ RUN npm install -g pnpm && \
17
+ pnpm fetch
11
18
 
12
19
  COPY ./ ./
13
20
 
14
- EXPOSE 8080
21
+ RUN pnpm install --offline
22
+
23
+
24
+ FROM node:19.3.0-alpine@sha256:3ed634e0f15d3e05a1918c3949963508f7ed56350cf94156e6d804ae577849fa AS test
25
+
26
+ WORKDIR /srv/app/
27
+
28
+ COPY --from=build /srv/app/ ./
29
+
30
+ RUN npm install -g pnpm && \
31
+ pnpm run test
32
+
33
+
34
+ FROM node:19.3.0-alpine@sha256:3ed634e0f15d3e05a1918c3949963508f7ed56350cf94156e6d804ae577849fa AS collect
35
+
36
+ WORKDIR /srv/app/
37
+
38
+ COPY --from=build /srv/app/ /srv/app/
39
+ COPY --from=test /srv/app/package.json /tmp/package.json
40
+
41
+
42
+ FROM node:19.3.0-alpine@sha256:3ed634e0f15d3e05a1918c3949963508f7ed56350cf94156e6d804ae577849fa AS production
43
+
44
+ WORKDIR /srv/app/
45
+
46
+ COPY --from=collect /srv/app/ ./
15
47
 
16
- ENTRYPOINT ["node", "./src/generator.js"]
48
+ ENTRYPOINT ["node", "./src/generator.cjs"]
@@ -0,0 +1,14 @@
1
+ const commitlintConfigConventional = require('@commitlint/config-conventional')
2
+
3
+ const ruleMaxLineLength =
4
+ commitlintConfigConventional.rules['body-max-line-length']
5
+
6
+ ruleMaxLineLength[0] = process.env.CI === 'true' ? 1 : 2
7
+
8
+ module.exports = {
9
+ extends: ['@commitlint/config-conventional'],
10
+ rules: {
11
+ 'body-max-line-length': ruleMaxLineLength,
12
+ 'footer-max-line-length': ruleMaxLineLength,
13
+ },
14
+ }
package/package.json CHANGED
@@ -1,36 +1,41 @@
1
1
  {
2
2
  "name": "dargstack_rgen",
3
- "version": "0.7.16",
4
- "scheduleVersion": "0.7.16",
3
+ "version": "0.8.1",
4
+ "scheduleVersion": "0.7.17",
5
5
  "description": "Generates a DargStack stack project readme.",
6
- "main": "src/generator.js",
6
+ "main": "src/generator.cjs",
7
7
  "repository": "https://github.com/dargmuesli/dargstack_rgen.git",
8
8
  "author": "Jonas Thelemann <e-mail@jonas-thelemann.de>",
9
9
  "license": "GPL-3.0-only",
10
10
  "bin": {
11
- "dargstack_rgen": "./src/generator.js"
11
+ "dargstack_rgen": "./src/generator.cjs"
12
+ },
13
+ "type": "module",
14
+ "engines": {
15
+ "node": "19"
16
+ },
17
+ "packageManager": "pnpm@7.20.0",
18
+ "scripts": {
19
+ "postinstall": "if [ -d '.git' ] && [ -d '.husky' ]; then husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks; fi",
20
+ "test": "node src/generator.cjs -p test/example_stack -v"
12
21
  },
13
22
  "dependencies": {
14
23
  "deepmerge": "4.2.2",
15
24
  "diff": "5.1.0",
16
25
  "json2md": "2.0.0",
17
- "yaml": "2.1.3",
26
+ "yaml": "2.2.0",
18
27
  "yargs": "17.6.2"
19
28
  },
20
29
  "devDependencies": {
21
30
  "@commitlint/cli": "17.3.0",
22
31
  "@commitlint/config-conventional": "17.3.0",
23
- "eslint": "8.29.0",
32
+ "eslint": "8.30.0",
24
33
  "eslint-config-standard": "17.0.0",
25
34
  "eslint-plugin-import": "2.26.0",
35
+ "eslint-plugin-n": "15.6.0",
26
36
  "eslint-plugin-node": "11.1.0",
27
37
  "eslint-plugin-promise": "6.1.1",
28
- "eslint-plugin-standard": "4.1.0",
29
38
  "husky": "8.0.2",
30
39
  "shx": "0.3.4"
31
- },
32
- "scripts": {
33
- "prepare": "if [[ -d '.git' && -d '.husky' ]]; then husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks; fi",
34
- "test": "node src/generator.js -p test/example_stack -v"
35
40
  }
36
41
  }
package/pnpm-lock.yaml CHANGED
@@ -5,34 +5,34 @@ specifiers:
5
5
  '@commitlint/config-conventional': 17.3.0
6
6
  deepmerge: 4.2.2
7
7
  diff: 5.1.0
8
- eslint: 8.29.0
8
+ eslint: 8.30.0
9
9
  eslint-config-standard: 17.0.0
10
10
  eslint-plugin-import: 2.26.0
11
+ eslint-plugin-n: 15.6.0
11
12
  eslint-plugin-node: 11.1.0
12
13
  eslint-plugin-promise: 6.1.1
13
- eslint-plugin-standard: 4.1.0
14
14
  husky: 8.0.2
15
15
  json2md: 2.0.0
16
16
  shx: 0.3.4
17
- yaml: 2.1.3
17
+ yaml: 2.2.0
18
18
  yargs: 17.6.2
19
19
 
20
20
  dependencies:
21
21
  deepmerge: 4.2.2
22
22
  diff: 5.1.0
23
23
  json2md: 2.0.0
24
- yaml: 2.1.3
24
+ yaml: 2.2.0
25
25
  yargs: 17.6.2
26
26
 
27
27
  devDependencies:
28
28
  '@commitlint/cli': 17.3.0
29
29
  '@commitlint/config-conventional': 17.3.0
30
- eslint: 8.29.0
31
- eslint-config-standard: 17.0.0_4tr2wyaxauhaioal5slcgrplke
32
- eslint-plugin-import: 2.26.0_eslint@8.29.0
33
- eslint-plugin-node: 11.1.0_eslint@8.29.0
34
- eslint-plugin-promise: 6.1.1_eslint@8.29.0
35
- eslint-plugin-standard: 4.1.0_eslint@8.29.0
30
+ eslint: 8.30.0
31
+ eslint-config-standard: 17.0.0_snpl5wgzq3nl6iwyoqvj6sxsdi
32
+ eslint-plugin-import: 2.26.0_eslint@8.30.0
33
+ eslint-plugin-n: 15.6.0_eslint@8.30.0
34
+ eslint-plugin-node: 11.1.0_eslint@8.30.0
35
+ eslint-plugin-promise: 6.1.1_eslint@8.30.0
36
36
  husky: 8.0.2
37
37
  shx: 0.3.4
38
38
 
@@ -145,15 +145,15 @@ packages:
145
145
  '@commitlint/execute-rule': 17.0.0
146
146
  '@commitlint/resolve-extends': 17.3.0
147
147
  '@commitlint/types': 17.0.0
148
- '@types/node': 14.18.34
148
+ '@types/node': 14.18.36
149
149
  chalk: 4.1.2
150
150
  cosmiconfig: 7.1.0
151
- cosmiconfig-typescript-loader: 4.2.0_rlet5slz3ltveuzxg6noqqckla
151
+ cosmiconfig-typescript-loader: 4.3.0_k32j2iwrrwkbro5edqflmrijke
152
152
  lodash.isplainobject: 4.0.6
153
153
  lodash.merge: 4.6.2
154
154
  lodash.uniq: 4.5.0
155
155
  resolve-from: 5.0.0
156
- ts-node: 10.9.1_ewcgsh5jhk3o7xvttutb4bhery
156
+ ts-node: 10.9.1_ocil65wecyuhsmrrocoajouipe
157
157
  typescript: 4.9.4
158
158
  transitivePeerDependencies:
159
159
  - '@swc/core'
@@ -234,15 +234,15 @@ packages:
234
234
  '@jridgewell/trace-mapping': 0.3.9
235
235
  dev: true
236
236
 
237
- /@eslint/eslintrc/1.3.3:
238
- resolution: {integrity: sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==}
237
+ /@eslint/eslintrc/1.4.0:
238
+ resolution: {integrity: sha512-7yfvXy6MWLgWSFsLhz5yH3iQ52St8cdUY6FoGieKkRDVxuxmrNuUetIuu6cmjNWwniUHiWXjxCr5tTXDrbYS5A==}
239
239
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
240
240
  dependencies:
241
241
  ajv: 6.12.6
242
242
  debug: 4.3.4
243
243
  espree: 9.4.1
244
- globals: 13.18.0
245
- ignore: 5.2.1
244
+ globals: 13.19.0
245
+ ignore: 5.2.4
246
246
  import-fresh: 3.3.0
247
247
  js-yaml: 4.1.0
248
248
  minimatch: 3.1.2
@@ -251,8 +251,8 @@ packages:
251
251
  - supports-color
252
252
  dev: true
253
253
 
254
- /@humanwhocodes/config-array/0.11.7:
255
- resolution: {integrity: sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==}
254
+ /@humanwhocodes/config-array/0.11.8:
255
+ resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==}
256
256
  engines: {node: '>=10.10.0'}
257
257
  dependencies:
258
258
  '@humanwhocodes/object-schema': 1.2.1
@@ -332,8 +332,8 @@ packages:
332
332
  resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
333
333
  dev: true
334
334
 
335
- /@types/node/14.18.34:
336
- resolution: {integrity: sha512-hcU9AIQVHmPnmjRK+XUUYlILlr9pQrsqSrwov/JK1pnf3GTQowVBhx54FbvM0AU/VXGH4i3+vgXS5EguR7fysA==}
335
+ /@types/node/14.18.36:
336
+ resolution: {integrity: sha512-FXKWbsJ6a1hIrRxv+FoukuHnGTgEzKYGi7kilfMae96AL9UNkPFNWJEEYWzdRI9ooIkbr4AKldyuSTLql06vLQ==}
337
337
  dev: true
338
338
 
339
339
  /@types/normalize-package-data/2.4.1:
@@ -455,6 +455,12 @@ packages:
455
455
  concat-map: 0.0.1
456
456
  dev: true
457
457
 
458
+ /builtins/5.0.1:
459
+ resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}
460
+ dependencies:
461
+ semver: 7.3.8
462
+ dev: true
463
+
458
464
  /call-bind/1.0.2:
459
465
  resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
460
466
  dependencies:
@@ -566,8 +572,8 @@ packages:
566
572
  through2: 4.0.2
567
573
  dev: true
568
574
 
569
- /cosmiconfig-typescript-loader/4.2.0_rlet5slz3ltveuzxg6noqqckla:
570
- resolution: {integrity: sha512-NkANeMnaHrlaSSlpKGyvn2R4rqUDeE/9E5YHx+b4nwo0R8dZyAqcih8/gxpCZvqWP9Vf6xuLpMSzSgdVEIM78g==}
575
+ /cosmiconfig-typescript-loader/4.3.0_k32j2iwrrwkbro5edqflmrijke:
576
+ resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==}
571
577
  engines: {node: '>=12', npm: '>=6'}
572
578
  peerDependencies:
573
579
  '@types/node': '*'
@@ -575,9 +581,9 @@ packages:
575
581
  ts-node: '>=10'
576
582
  typescript: '>=3'
577
583
  dependencies:
578
- '@types/node': 14.18.34
584
+ '@types/node': 14.18.36
579
585
  cosmiconfig: 7.1.0
580
- ts-node: 10.9.1_ewcgsh5jhk3o7xvttutb4bhery
586
+ ts-node: 10.9.1_ocil65wecyuhsmrrocoajouipe
581
587
  typescript: 4.9.4
582
588
  dev: true
583
589
 
@@ -728,7 +734,7 @@ packages:
728
734
  has: 1.0.3
729
735
  has-property-descriptors: 1.0.0
730
736
  has-symbols: 1.0.3
731
- internal-slot: 1.0.3
737
+ internal-slot: 1.0.4
732
738
  is-callable: 1.2.7
733
739
  is-negative-zero: 2.0.2
734
740
  is-regex: 1.1.4
@@ -774,7 +780,7 @@ packages:
774
780
  engines: {node: '>=10'}
775
781
  dev: true
776
782
 
777
- /eslint-config-standard/17.0.0_4tr2wyaxauhaioal5slcgrplke:
783
+ /eslint-config-standard/17.0.0_snpl5wgzq3nl6iwyoqvj6sxsdi:
778
784
  resolution: {integrity: sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==}
779
785
  peerDependencies:
780
786
  eslint: ^8.0.1
@@ -782,9 +788,10 @@ packages:
782
788
  eslint-plugin-n: ^15.0.0
783
789
  eslint-plugin-promise: ^6.0.0
784
790
  dependencies:
785
- eslint: 8.29.0
786
- eslint-plugin-import: 2.26.0_eslint@8.29.0
787
- eslint-plugin-promise: 6.1.1_eslint@8.29.0
791
+ eslint: 8.30.0
792
+ eslint-plugin-import: 2.26.0_eslint@8.30.0
793
+ eslint-plugin-n: 15.6.0_eslint@8.30.0
794
+ eslint-plugin-promise: 6.1.1_eslint@8.30.0
788
795
  dev: true
789
796
 
790
797
  /eslint-import-resolver-node/0.3.6:
@@ -796,7 +803,7 @@ packages:
796
803
  - supports-color
797
804
  dev: true
798
805
 
799
- /eslint-module-utils/2.7.4_uplb3bqnui63takc5j27khdnpm:
806
+ /eslint-module-utils/2.7.4_dc7heojkjdjw5ttc65wer4jauy:
800
807
  resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
801
808
  engines: {node: '>=4'}
802
809
  peerDependencies:
@@ -818,24 +825,35 @@ packages:
818
825
  optional: true
819
826
  dependencies:
820
827
  debug: 3.2.7
821
- eslint: 8.29.0
828
+ eslint: 8.30.0
822
829
  eslint-import-resolver-node: 0.3.6
823
830
  transitivePeerDependencies:
824
831
  - supports-color
825
832
  dev: true
826
833
 
827
- /eslint-plugin-es/3.0.1_eslint@8.29.0:
834
+ /eslint-plugin-es/3.0.1_eslint@8.30.0:
828
835
  resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==}
829
836
  engines: {node: '>=8.10.0'}
830
837
  peerDependencies:
831
838
  eslint: '>=4.19.1'
832
839
  dependencies:
833
- eslint: 8.29.0
840
+ eslint: 8.30.0
841
+ eslint-utils: 2.1.0
842
+ regexpp: 3.2.0
843
+ dev: true
844
+
845
+ /eslint-plugin-es/4.1.0_eslint@8.30.0:
846
+ resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==}
847
+ engines: {node: '>=8.10.0'}
848
+ peerDependencies:
849
+ eslint: '>=4.19.1'
850
+ dependencies:
851
+ eslint: 8.30.0
834
852
  eslint-utils: 2.1.0
835
853
  regexpp: 3.2.0
836
854
  dev: true
837
855
 
838
- /eslint-plugin-import/2.26.0_eslint@8.29.0:
856
+ /eslint-plugin-import/2.26.0_eslint@8.30.0:
839
857
  resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
840
858
  engines: {node: '>=4'}
841
859
  peerDependencies:
@@ -849,9 +867,9 @@ packages:
849
867
  array.prototype.flat: 1.3.1
850
868
  debug: 2.6.9
851
869
  doctrine: 2.1.0
852
- eslint: 8.29.0
870
+ eslint: 8.30.0
853
871
  eslint-import-resolver-node: 0.3.6
854
- eslint-module-utils: 2.7.4_uplb3bqnui63takc5j27khdnpm
872
+ eslint-module-utils: 2.7.4_dc7heojkjdjw5ttc65wer4jauy
855
873
  has: 1.0.3
856
874
  is-core-module: 2.11.0
857
875
  is-glob: 4.0.3
@@ -865,36 +883,45 @@ packages:
865
883
  - supports-color
866
884
  dev: true
867
885
 
868
- /eslint-plugin-node/11.1.0_eslint@8.29.0:
886
+ /eslint-plugin-n/15.6.0_eslint@8.30.0:
887
+ resolution: {integrity: sha512-Hd/F7wz4Mj44Jp0H6Jtty13NcE69GNTY0rVlgTIj1XBnGGVI6UTdDrpE6vqu3AHo07bygq/N+7OH/lgz1emUJw==}
888
+ engines: {node: '>=12.22.0'}
889
+ peerDependencies:
890
+ eslint: '>=7.0.0'
891
+ dependencies:
892
+ builtins: 5.0.1
893
+ eslint: 8.30.0
894
+ eslint-plugin-es: 4.1.0_eslint@8.30.0
895
+ eslint-utils: 3.0.0_eslint@8.30.0
896
+ ignore: 5.2.4
897
+ is-core-module: 2.11.0
898
+ minimatch: 3.1.2
899
+ resolve: 1.22.1
900
+ semver: 7.3.8
901
+ dev: true
902
+
903
+ /eslint-plugin-node/11.1.0_eslint@8.30.0:
869
904
  resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==}
870
905
  engines: {node: '>=8.10.0'}
871
906
  peerDependencies:
872
907
  eslint: '>=5.16.0'
873
908
  dependencies:
874
- eslint: 8.29.0
875
- eslint-plugin-es: 3.0.1_eslint@8.29.0
909
+ eslint: 8.30.0
910
+ eslint-plugin-es: 3.0.1_eslint@8.30.0
876
911
  eslint-utils: 2.1.0
877
- ignore: 5.2.1
912
+ ignore: 5.2.4
878
913
  minimatch: 3.1.2
879
914
  resolve: 1.22.1
880
915
  semver: 6.3.0
881
916
  dev: true
882
917
 
883
- /eslint-plugin-promise/6.1.1_eslint@8.29.0:
918
+ /eslint-plugin-promise/6.1.1_eslint@8.30.0:
884
919
  resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==}
885
920
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
886
921
  peerDependencies:
887
922
  eslint: ^7.0.0 || ^8.0.0
888
923
  dependencies:
889
- eslint: 8.29.0
890
- dev: true
891
-
892
- /eslint-plugin-standard/4.1.0_eslint@8.29.0:
893
- resolution: {integrity: sha512-ZL7+QRixjTR6/528YNGyDotyffm5OQst/sGxKDwGb9Uqs4In5Egi4+jbobhqJoyoCM6/7v/1A5fhQ7ScMtDjaQ==}
894
- peerDependencies:
895
- eslint: '>=5.0.0'
896
- dependencies:
897
- eslint: 8.29.0
924
+ eslint: 8.30.0
898
925
  dev: true
899
926
 
900
927
  /eslint-scope/7.1.1:
@@ -912,13 +939,13 @@ packages:
912
939
  eslint-visitor-keys: 1.3.0
913
940
  dev: true
914
941
 
915
- /eslint-utils/3.0.0_eslint@8.29.0:
942
+ /eslint-utils/3.0.0_eslint@8.30.0:
916
943
  resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
917
944
  engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
918
945
  peerDependencies:
919
946
  eslint: '>=5'
920
947
  dependencies:
921
- eslint: 8.29.0
948
+ eslint: 8.30.0
922
949
  eslint-visitor-keys: 2.1.0
923
950
  dev: true
924
951
 
@@ -937,13 +964,13 @@ packages:
937
964
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
938
965
  dev: true
939
966
 
940
- /eslint/8.29.0:
941
- resolution: {integrity: sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==}
967
+ /eslint/8.30.0:
968
+ resolution: {integrity: sha512-MGADB39QqYuzEGov+F/qb18r4i7DohCDOfatHaxI2iGlPuC65bwG2gxgO+7DkyL38dRFaRH7RaRAgU6JKL9rMQ==}
942
969
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
943
970
  hasBin: true
944
971
  dependencies:
945
- '@eslint/eslintrc': 1.3.3
946
- '@humanwhocodes/config-array': 0.11.7
972
+ '@eslint/eslintrc': 1.4.0
973
+ '@humanwhocodes/config-array': 0.11.8
947
974
  '@humanwhocodes/module-importer': 1.0.1
948
975
  '@nodelib/fs.walk': 1.2.8
949
976
  ajv: 6.12.6
@@ -953,7 +980,7 @@ packages:
953
980
  doctrine: 3.0.0
954
981
  escape-string-regexp: 4.0.0
955
982
  eslint-scope: 7.1.1
956
- eslint-utils: 3.0.0_eslint@8.29.0
983
+ eslint-utils: 3.0.0_eslint@8.30.0
957
984
  eslint-visitor-keys: 3.3.0
958
985
  espree: 9.4.1
959
986
  esquery: 1.4.0
@@ -962,9 +989,9 @@ packages:
962
989
  file-entry-cache: 6.0.1
963
990
  find-up: 5.0.0
964
991
  glob-parent: 6.0.2
965
- globals: 13.18.0
992
+ globals: 13.19.0
966
993
  grapheme-splitter: 1.0.4
967
- ignore: 5.2.1
994
+ ignore: 5.2.4
968
995
  import-fresh: 3.3.0
969
996
  imurmurhash: 0.1.4
970
997
  is-glob: 4.0.3
@@ -1179,8 +1206,8 @@ packages:
1179
1206
  ini: 1.3.8
1180
1207
  dev: true
1181
1208
 
1182
- /globals/13.18.0:
1183
- resolution: {integrity: sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==}
1209
+ /globals/13.19.0:
1210
+ resolution: {integrity: sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==}
1184
1211
  engines: {node: '>=8'}
1185
1212
  dependencies:
1186
1213
  type-fest: 0.20.2
@@ -1266,8 +1293,8 @@ packages:
1266
1293
  hasBin: true
1267
1294
  dev: true
1268
1295
 
1269
- /ignore/5.2.1:
1270
- resolution: {integrity: sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==}
1296
+ /ignore/5.2.4:
1297
+ resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
1271
1298
  engines: {node: '>= 4'}
1272
1299
  dev: true
1273
1300
 
@@ -1308,8 +1335,8 @@ packages:
1308
1335
  resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
1309
1336
  dev: true
1310
1337
 
1311
- /internal-slot/1.0.3:
1312
- resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==}
1338
+ /internal-slot/1.0.4:
1339
+ resolution: {integrity: sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==}
1313
1340
  engines: {node: '>= 0.4'}
1314
1341
  dependencies:
1315
1342
  get-intrinsic: 1.1.3
@@ -2167,7 +2194,7 @@ packages:
2167
2194
  engines: {node: '>=8'}
2168
2195
  dev: true
2169
2196
 
2170
- /ts-node/10.9.1_ewcgsh5jhk3o7xvttutb4bhery:
2197
+ /ts-node/10.9.1_ocil65wecyuhsmrrocoajouipe:
2171
2198
  resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
2172
2199
  hasBin: true
2173
2200
  peerDependencies:
@@ -2186,7 +2213,7 @@ packages:
2186
2213
  '@tsconfig/node12': 1.0.11
2187
2214
  '@tsconfig/node14': 1.0.3
2188
2215
  '@tsconfig/node16': 1.0.3
2189
- '@types/node': 14.18.34
2216
+ '@types/node': 14.18.36
2190
2217
  acorn: 8.8.1
2191
2218
  acorn-walk: 8.2.0
2192
2219
  arg: 4.1.3
@@ -2323,8 +2350,8 @@ packages:
2323
2350
  engines: {node: '>= 6'}
2324
2351
  dev: true
2325
2352
 
2326
- /yaml/2.1.3:
2327
- resolution: {integrity: sha512-AacA8nRULjKMX2DvWvOAdBZMOfQlypSFkjcOcu9FalllIDJ1kvlREzcdIZmidQUqqeMv7jorHjq2HlLv/+c2lg==}
2353
+ /yaml/2.2.0:
2354
+ resolution: {integrity: sha512-auf7Gi6QwO7HW//GA9seGvTXVGWl1CM/ADWh1+RxtXr6XOxnT65ovDl9fTi4e0monEyJxCHqDpF6QnFDXmJE4g==}
2328
2355
  engines: {node: '>= 14'}
2329
2356
  dev: false
2330
2357
 
File without changes
package/renovate.json CHANGED
@@ -1,4 +1,5 @@
1
1
  {
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
2
3
  "extends": [
3
4
  "github>dargmuesli/renovate-config"
4
5
  ]
File without changes
@@ -1,3 +0,0 @@
1
- module.exports = {
2
- extends: ['@commitlint/config-conventional']
3
- }