Skip to content

Commit 4b093c0

Browse files
committed
feat: changes inter-package dependencies to use latest version, so that features are available
1 parent d108a60 commit 4b093c0

File tree

25 files changed

+72
-72
lines changed

25 files changed

+72
-72
lines changed

app-config-cli/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
"prepublishOnly": "yarn clean && yarn build && yarn build:es"
3636
},
3737
"dependencies": {
38-
"@app-config/config": "2",
39-
"@app-config/core": "2",
40-
"@app-config/generate": "2",
41-
"@app-config/node": "2",
38+
"@app-config/config": "^2.1.4",
39+
"@app-config/core": "^2.1.4",
40+
"@app-config/generate": "^2.1.4",
41+
"@app-config/node": "^2.1.4",
4242
"clipboardy": "2",
4343
"common-tags": "1",
4444
"execa": "5",

app-config-config/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@
3030
"prepublishOnly": "yarn clean && yarn build && yarn build:es"
3131
},
3232
"dependencies": {
33-
"@app-config/core": "2",
34-
"@app-config/extensions": "2",
35-
"@app-config/meta": "2",
36-
"@app-config/node": "2",
37-
"@app-config/schema": "2"
33+
"@app-config/core": "^2.1.4",
34+
"@app-config/extensions": "^2.1.4",
35+
"@app-config/meta": "^2.1.4",
36+
"@app-config/node": "^2.1.4",
37+
"@app-config/schema": "^2.1.4"
3838
},
3939
"devDependencies": {
40-
"@app-config/test-utils": "2"
40+
"@app-config/test-utils": "^2.1.4"
4141
},
4242
"prettier": "@lcdev/prettier",
4343
"jest": {

app-config-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@
3030
"prepublishOnly": "yarn clean && yarn build && yarn build:es"
3131
},
3232
"dependencies": {
33-
"@app-config/utils": "2",
33+
"@app-config/utils": "^2.1.4",
3434
"@iarna/toml": "3",
3535
"js-yaml": "^3.13.1",
3636
"json5": "2",
3737
"lodash.merge": "^4.6.2"
3838
},
3939
"devDependencies": {
40-
"@app-config/test-utils": "2",
40+
"@app-config/test-utils": "^2.1.4",
4141
"@types/js-yaml": "3",
4242
"@types/lodash.merge": "4"
4343
},

app-config-cypress/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
},
3232
"dependencies": {},
3333
"peerDependencies": {
34-
"@app-config/main": "2",
34+
"@app-config/main": "^2.1.4",
3535
"cypress": "6"
3636
},
3737
"devDependencies": {
38-
"@app-config/main": "2",
38+
"@app-config/main": "^2.1.4",
3939
"cypress": "6"
4040
},
4141
"prettier": "@lcdev/prettier",

app-config-default-extensions/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
"test": "jest"
2323
},
2424
"dependencies": {
25-
"@app-config/core": "2",
26-
"@app-config/encryption": "2",
27-
"@app-config/extensions": "2",
28-
"@app-config/git": "2",
29-
"@app-config/v1-compat": "2"
25+
"@app-config/core": "^2.1.4",
26+
"@app-config/encryption": "^2.1.4",
27+
"@app-config/extensions": "^2.1.4",
28+
"@app-config/git": "^2.1.4",
29+
"@app-config/v1-compat": "^2.1.4"
3030
},
3131
"devDependencies": {},
3232
"prettier": "@lcdev/prettier",

app-config-encryption/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
"prepublishOnly": "yarn clean && yarn build && yarn build:es"
3131
},
3232
"dependencies": {
33-
"@app-config/core": "2",
34-
"@app-config/meta": "2",
35-
"@app-config/node": "2",
36-
"@app-config/settings": "2",
33+
"@app-config/core": "^2.1.4",
34+
"@app-config/meta": "^2.1.4",
35+
"@app-config/node": "^2.1.4",
36+
"@app-config/settings": "^2.1.4",
3737
"@lcdev/ws-rpc": "0.4",
3838
"@types/openpgp": "4",
3939
"common-tags": "1",
@@ -44,7 +44,7 @@
4444
"ws": "7"
4545
},
4646
"devDependencies": {
47-
"@app-config/test-utils": "2",
47+
"@app-config/test-utils": "^2.1.4",
4848
"get-port": "5"
4949
},
5050
"prettier": "@lcdev/prettier",

app-config-extensions/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@
3030
"prepublishOnly": "yarn clean && yarn build && yarn build:es"
3131
},
3232
"dependencies": {
33-
"@app-config/core": "2",
34-
"@app-config/logging": "2",
35-
"@app-config/node": "2",
36-
"@app-config/utils": "2"
33+
"@app-config/core": "^2.1.4",
34+
"@app-config/logging": "^2.1.4",
35+
"@app-config/node": "^2.1.4",
36+
"@app-config/utils": "^2.1.4"
3737
},
3838
"devDependencies": {
39-
"@app-config/test-utils": "2"
39+
"@app-config/test-utils": "^2.1.4"
4040
},
4141
"prettier": "@lcdev/prettier",
4242
"jest": {

app-config-generate/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@
3030
"prepublishOnly": "yarn clean && yarn build && yarn build:es"
3131
},
3232
"dependencies": {
33-
"@app-config/meta": "2",
34-
"@app-config/schema": "2",
33+
"@app-config/meta": "^2.1.4",
34+
"@app-config/schema": "^2.1.4",
3535
"@types/readable-stream": "2",
3636
"@types/urijs": "1",
3737
"common-tags": "1",
3838
"fs-extra": "7",
3939
"quicktype-core": "6.0.69"
4040
},
4141
"devDependencies": {
42-
"@app-config/test-utils": "2"
42+
"@app-config/test-utils": "^2.1.4"
4343
},
4444
"prettier": "@lcdev/prettier",
4545
"jest": {

app-config-git/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
"prepublishOnly": "yarn clean && yarn build && yarn build:es"
3131
},
3232
"dependencies": {
33-
"@app-config/core": "2",
33+
"@app-config/core": "^2.1.4",
3434
"simple-git": "2"
3535
},
3636
"devDependencies": {
37-
"@app-config/test-utils": "2"
37+
"@app-config/test-utils": "^2.1.4"
3838
},
3939
"prettier": "@lcdev/prettier",
4040
"jest": {

app-config-inject/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
"prepublishOnly": "yarn clean && yarn build && yarn build:es"
3535
},
3636
"dependencies": {
37-
"@app-config/core": "2",
38-
"@app-config/main": "2",
39-
"@app-config/node": "2",
37+
"@app-config/core": "^2.1.4",
38+
"@app-config/main": "^2.1.4",
39+
"@app-config/node": "^2.1.4",
4040
"@types/yargs": "16",
4141
"node-html-parser": "1",
4242
"yargs": "16"

0 commit comments

Comments
 (0)