Skip to content

Commit 7bdd8e1

Browse files
committedApr 11, 2020
Improve markdown formatting
1 parent 3ce8352 commit 7bdd8e1

File tree

6 files changed

+39
-41
lines changed

6 files changed

+39
-41
lines changed
 

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ introducing a configuration schema, convict gives project collaborators more
1313
when configuration goes wrong.
1414

1515
:warning: Convict repository and NPM package are presently undergoing a big
16-
transition from single package (up to convict@5.x) to multi-package structure
17-
(beginning with convict@6).
16+
transition from single package (up to `convict@5.x`) to multi-package structure
17+
(beginning with `convict@6`).
1818

19-
See https://www.npmjs.com/package/convict for convict@5.x documentation
19+
See https://www.npmjs.com/package/convict for `convict@5.x` documentation
2020

2121

2222
This repository is a collection of the following packages.

‎package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22
"name": "node-convict",
33
"private": true,
44
"dependencies": {
5-
"lodash.clonedeep": "4.5.0",
6-
"moment": "2.24.0",
7-
"validator": "11.1.0",
8-
"yargs-parser": "18.1.1"
5+
"lodash.clonedeep": "~4.5.0",
6+
"moment": "~2.24.0",
7+
"validator": "~11.1.0",
8+
"yargs-parser": "~18.1.1"
99
},
1010
"devDependencies": {
1111
"convict": "file:./packages/convict/",
1212
"convict-format-with-moment": "file:./packages/convict-format-with-moment/",
1313
"convict-format-with-validator": "file:./packages/convict-format-with-validator/",
14-
"coveralls": "3.0.7",
15-
"deep-object-diff": "1.1.0",
16-
"eslint": "6.5.1",
17-
"js-yaml": "3.13.1",
18-
"json5": "2.1.0",
19-
"lerna": "3.16.4",
20-
"mocha": "6.2.1",
21-
"must": "0.13.4",
22-
"nyc": "14.1.1",
23-
"toml": "3.0.0"
14+
"coveralls": "~3.0.7",
15+
"deep-object-diff": "~1.1.0",
16+
"eslint": "~6.5.1",
17+
"js-yaml": "~3.13.1",
18+
"json5": "~2.1.0",
19+
"lerna": "~3.16.4",
20+
"mocha": "~6.2.1",
21+
"must": "~0.13.4",
22+
"nyc": "~14.1.1",
23+
"toml": "~3.0.0"
2424
},
2525
"scripts": {
2626
"bootstrap:ci": "npm ci && npm ci packages/*",

‎packages/convict-format-with-moment/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232
],
3333
"main": "lib/index.js",
3434
"dependencies": {
35-
"moment": "2.24.0"
35+
"moment": "~2.24.0"
3636
},
3737
"devDependencies": {
3838
"convict": "file:../convict",
39-
"eslint": "6.5.1",
40-
"mocha": "6.2.1",
41-
"must": "0.13.4"
39+
"eslint": "~6.5.1",
40+
"mocha": "~6.2.1",
41+
"must": "~0.13.4"
4242
}
4343
}

‎packages/convict-format-with-validator/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
],
3434
"main": "lib/index.js",
3535
"dependencies": {
36-
"validator": "11.1.0"
36+
"validator": "~11.1.0"
3737
},
3838
"devDependencies": {
3939
"convict": "file:../convict",
40-
"eslint": "6.5.1",
41-
"mocha": "6.2.1",
42-
"must": "0.13.4"
40+
"eslint": "~6.5.1",
41+
"mocha": "~6.2.1",
42+
"must": "~0.13.4"
4343
}
4444
}

‎packages/convict/package-lock.json

+5-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎packages/convict/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,18 @@
3333
],
3434
"main": "lib/convict.js",
3535
"dependencies": {
36-
"lodash.clonedeep": "4.5.0",
37-
"yargs-parser": "18.1.1"
36+
"lodash.clonedeep": "~4.5.0",
37+
"yargs-parser": "~18.1.1"
3838
},
3939
"devDependencies": {
4040
"convict-format-with-moment": "file:../convict-format-with-moment",
4141
"convict-format-with-validator": "file:../convict-format-with-validator",
42-
"deep-object-diff": "1.1.0",
43-
"eslint": "6.5.1",
44-
"js-yaml": "3.13.1",
45-
"json5": "2.1.0",
46-
"mocha": "6.2.1",
47-
"must": "0.13.4",
48-
"toml": "3.0.0"
42+
"deep-object-diff": "~1.1.0",
43+
"eslint": "~6.5.1",
44+
"js-yaml": "~3.13.1",
45+
"json5": "~2.1.0",
46+
"mocha": "~6.2.1",
47+
"must": "~0.13.4",
48+
"toml": "~3.0.0"
4949
}
5050
}

0 commit comments

Comments
 (0)
Please sign in to comment.