Skip to content

Commit

Permalink
deps: update few npm dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed May 28, 2022
1 parent 1fac28c commit b912900
Show file tree
Hide file tree
Showing 11 changed files with 133 additions and 136 deletions.
189 changes: 93 additions & 96 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -69,7 +69,7 @@
"@lerna-test/silence-logging": "file:helpers/silence-logging",
"@lerna-test/update-lerna-config": "file:helpers/update-lerna-config",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@types/node": "^17.0.36",
"@types/npmlog": "^4.1.4",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.26.0",
Expand All @@ -89,9 +89,9 @@
"rimraf": "^3.0.2",
"tacks": "^1.2.6",
"tempy": "^1.0.1",
"ts-jest": "^28.0.2",
"ts-jest": "^28.0.3",
"tsm": "^2.2.1",
"typescript": "^4.6.4"
"typescript": "^4.7.2"
},
"workspaces": [
"./packages/core",
Expand Down
14 changes: 7 additions & 7 deletions packages/cli/package.json
@@ -1,7 +1,7 @@
{
"name": "@lerna-lite/cli",
"description": "Lerna-Lite CLI for the Version/Publish commands",
"version": "1.2.0",
"version": "1.3.0",
"main": "dist/cli.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -33,15 +33,15 @@
"npm": ">=8.0.0"
},
"dependencies": {
"@lerna-lite/core": "^1.2.0",
"@lerna-lite/info": "^1.2.0",
"@lerna-lite/init": "^1.2.0",
"@lerna-lite/publish": "^1.2.0",
"@lerna-lite/version": "^1.2.0",
"@lerna-lite/core": "^1.3.0",
"@lerna-lite/info": "^1.3.0",
"@lerna-lite/init": "^1.3.0",
"@lerna-lite/publish": "^1.3.0",
"@lerna-lite/version": "^1.3.0",
"dedent": "^0.7.0",
"dotenv": "^16.0.1",
"import-local": "^3.1.0",
"npmlog": "^6.0.2",
"yargs": "^17.5.1"
}
}
}
8 changes: 4 additions & 4 deletions packages/core/package.json
@@ -1,7 +1,7 @@
{
"name": "@lerna-lite/core",
"description": "Lerna-Lite core implementation module",
"version": "1.2.0",
"version": "1.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -57,15 +57,15 @@
"node-fetch": "^2.6.7",
"npm-lifecycle": "^3.1.5",
"npm-package-arg": "^9.0.2",
"npm-packlist": "^5.0.4",
"npm-packlist": "^5.1.0",
"npm-registry-fetch": "^13.1.1",
"npmlog": "^6.0.2",
"os": "^0.1.2",
"p-map": "^4.0.0",
"p-pipe": "^3.1.0",
"p-queue": "^6.6.2",
"p-reduce": "^2.1.0",
"pacote": "^13.4.1",
"pacote": "^13.5.0",
"path": "^0.12.7",
"resolve-from": "^5.0.0",
"semver": "^7.3.7",
Expand Down Expand Up @@ -104,4 +104,4 @@
"type": "ko_fi",
"url": "https://ko-fi.com/ghiscoding"
}
}
}
8 changes: 4 additions & 4 deletions packages/exec-run-common/package.json
@@ -1,7 +1,7 @@
{
"name": "@lerna-lite/exec-run-common",
"description": "Lerna-Lite Exec/Run common util code",
"version": "1.2.0",
"version": "1.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -31,7 +31,7 @@
"npm": ">=8.0.0"
},
"dependencies": {
"@lerna-lite/core": "^1.2.0",
"@lerna-lite/core": "^1.3.0",
"fs-extra": "^10.1.0",
"multimatch": "^5.0.0",
"npmlog": "^6.0.2",
Expand All @@ -41,7 +41,7 @@
},
"devDependencies": {
"@types/execa": "^2.0.0",
"@types/node": "^17.0.35",
"@types/node": "^17.0.36",
"@types/p-map": "^2.0.0"
}
}
}
8 changes: 4 additions & 4 deletions packages/exec/package.json
@@ -1,7 +1,7 @@
{
"name": "@lerna-lite/exec",
"description": "Lerna-Lite Exec command will execute an arbitrary command in each package",
"version": "1.2.0",
"version": "1.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -31,8 +31,8 @@
"npm": ">=8.0.0"
},
"dependencies": {
"@lerna-lite/core": "^1.2.0",
"@lerna-lite/exec-run-common": "^1.2.0",
"@lerna-lite/core": "^1.3.0",
"@lerna-lite/exec-run-common": "^1.3.0",
"fs-extra": "^10.1.0",
"multimatch": "^5.0.0",
"npmlog": "^6.0.2",
Expand All @@ -44,4 +44,4 @@
"@types/execa": "^2.0.0",
"@types/p-map": "^2.0.0"
}
}
}
6 changes: 3 additions & 3 deletions packages/info/package.json
@@ -1,7 +1,7 @@
{
"name": "@lerna-lite/info",
"description": "Lerna-Lite - Prints local environnment information",
"version": "1.2.0",
"version": "1.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -31,12 +31,12 @@
"npm": ">=8.0.0"
},
"dependencies": {
"@lerna-lite/core": "^1.2.0",
"@lerna-lite/core": "^1.3.0",
"dedent": "^0.7.0",
"envinfo": "^7.8.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/envinfo": "^7.8.1"
}
}
}
6 changes: 3 additions & 3 deletions packages/init/package.json
@@ -1,7 +1,7 @@
{
"name": "@lerna-lite/init",
"description": "Lerna-Lite init commmand - Create a new Lerna repo or upgrade an existing repo to the current version of Lerna",
"version": "1.2.0",
"version": "1.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -31,7 +31,7 @@
"npm": ">=8.0.0"
},
"dependencies": {
"@lerna-lite/core": "^1.2.0",
"@lerna-lite/core": "^1.3.0",
"fs-extra": "^10.1.0",
"p-map": "^4.0.0",
"write-json-file": "^4.3.0"
Expand All @@ -41,4 +41,4 @@
"@types/p-map": "^2.0.0",
"@types/write-json-file": "^3.2.1"
}
}
}
12 changes: 6 additions & 6 deletions packages/publish/package.json
@@ -1,7 +1,7 @@
{
"name": "@lerna-lite/publish",
"description": "Publish packages in the current workspace",
"version": "1.2.0",
"version": "1.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -31,22 +31,22 @@
"npm": ">=8.0.0"
},
"dependencies": {
"@lerna-lite/core": "^1.2.0",
"@lerna-lite/version": "^1.2.0",
"@lerna-lite/core": "^1.3.0",
"@lerna-lite/version": "^1.3.0",
"byte-size": "^7.0.1",
"columnify": "^1.6.0",
"fs-extra": "^10.1.0",
"has-unicode": "^2.0.1",
"libnpmaccess": "^6.0.3",
"libnpmpublish": "^6.0.4",
"npm-package-arg": "^9.0.2",
"npm-packlist": "^5.0.4",
"npm-packlist": "^5.1.0",
"npm-registry-fetch": "^13.1.1",
"npmlog": "^6.0.2",
"os": "^0.1.2",
"p-map": "^4.0.0",
"p-pipe": "^3.1.0",
"pacote": "^13.4.1",
"pacote": "^13.5.0",
"path": "^0.12.7",
"pify": "^5.0.0",
"read-package-json": "^5.0.1",
Expand Down Expand Up @@ -75,4 +75,4 @@
"@types/write-json-file": "^3.2.1",
"@types/write-pkg": "^4.0.0"
}
}
}
8 changes: 4 additions & 4 deletions packages/run/package.json
@@ -1,7 +1,7 @@
{
"name": "@lerna-lite/run",
"description": "Lerna-Lite Run command will help to run npm script in each package workspace that contains that script",
"version": "1.2.0",
"version": "1.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -31,8 +31,8 @@
"npm": ">=8.0.0"
},
"dependencies": {
"@lerna-lite/core": "^1.2.0",
"@lerna-lite/exec-run-common": "^1.2.0",
"@lerna-lite/core": "^1.3.0",
"@lerna-lite/exec-run-common": "^1.3.0",
"fs-extra": "^10.1.0",
"multimatch": "^5.0.0",
"npmlog": "^6.0.2",
Expand All @@ -44,4 +44,4 @@
"@types/execa": "^2.0.0",
"@types/p-map": "^2.0.0"
}
}
}
4 changes: 2 additions & 2 deletions packages/version/package.json
@@ -1,7 +1,7 @@
{
"name": "@lerna-lite/version",
"description": "Bump version & write changelog of packages changed since the last release",
"version": "1.2.0",
"version": "1.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -31,7 +31,7 @@
"npm": ">=8.0.0"
},
"dependencies": {
"@lerna-lite/core": "^1.2.0",
"@lerna-lite/core": "^1.3.0",
"chalk": "^4.1.2",
"dedent": "^0.7.0",
"js-yaml": "^4.1.0",
Expand Down

0 comments on commit b912900

Please sign in to comment.