lerna-projen 0.1.40 → 0.1.42

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/.jsii CHANGED
@@ -14,7 +14,7 @@
14
14
  "fs-extra": "^9.1.0"
15
15
  },
16
16
  "dependencies": {
17
- "projen": "^0.68.5"
17
+ "projen": "^0.68.11"
18
18
  },
19
19
  "dependencyClosure": {
20
20
  "projen": {
@@ -62,7 +62,7 @@
62
62
  "stability": "stable"
63
63
  },
64
64
  "homepage": "https://github.com/AminFazlMondo/Lerna-Projen.git",
65
- "jsiiVersion": "1.77.0 (build 3e5fa88)",
65
+ "jsiiVersion": "1.78.1 (build 878761e)",
66
66
  "keywords": [
67
67
  "lerna",
68
68
  "monorepo",
@@ -781,6 +781,6 @@
781
781
  "symbolId": "src/types:TaskCustomization"
782
782
  }
783
783
  },
784
- "version": "0.1.40",
785
- "fingerprint": "+nkkRKPcAkInNWTVY8IF7ZB0PNjW0L+Ss8LB8PuSwXg="
784
+ "version": "0.1.42",
785
+ "fingerprint": "J0+u6gk8KOG/aTAXNwCPkbe5lW5ZTupOikXksAZLYTs="
786
786
  }
package/lib/index.js CHANGED
@@ -90,7 +90,7 @@ class LernaProject extends projen_1.javascript.NodeProject {
90
90
  }
91
91
  exports.LernaProject = LernaProject;
92
92
  _a = JSII_RTTI_SYMBOL_1;
93
- LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.40" };
93
+ LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.42" };
94
94
  /**
95
95
  * @pjid lerna-ts-project
96
96
  */
@@ -135,7 +135,7 @@ class LernaTypescriptProject extends projen_1.typescript.TypeScriptProject {
135
135
  }
136
136
  exports.LernaTypescriptProject = LernaTypescriptProject;
137
137
  _b = JSII_RTTI_SYMBOL_1;
138
- LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.40" };
138
+ LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.42" };
139
139
  class LernaProjectFactory {
140
140
  constructor(project) {
141
141
  this.project = project;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "graceful-fs",
3
3
  "description": "A drop-in replacement for fs, making various improvements.",
4
- "version": "4.2.10",
4
+ "version": "4.2.11",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/isaacs/node-graceful-fs"
@@ -38,7 +38,7 @@
38
38
  "import-fresh": "^2.0.0",
39
39
  "mkdirp": "^0.5.0",
40
40
  "rimraf": "^2.2.8",
41
- "tap": "^12.7.0"
41
+ "tap": "^16.3.4"
42
42
  },
43
43
  "files": [
44
44
  "fs.js",
@@ -46,5 +46,8 @@
46
46
  "legacy-streams.js",
47
47
  "polyfills.js",
48
48
  "clone.js"
49
- ]
49
+ ],
50
+ "tap": {
51
+ "reporter": "classic"
52
+ }
50
53
  }
@@ -101,7 +101,7 @@ function patch (fs) {
101
101
  var backoff = 0;
102
102
  fs$rename(from, to, function CB (er) {
103
103
  if (er
104
- && (er.code === "EACCES" || er.code === "EPERM")
104
+ && (er.code === "EACCES" || er.code === "EPERM" || er.code === "EBUSY")
105
105
  && Date.now() - start < 60000) {
106
106
  setTimeout(function() {
107
107
  fs.stat(to, function (stater, st) {
package/package.json CHANGED
@@ -52,19 +52,19 @@
52
52
  "eslint-plugin-import": "^2.27.5",
53
53
  "jest": "^27",
54
54
  "jest-junit": "^13",
55
- "jsii": "^1.77.0",
56
- "jsii-diff": "^1.77.0",
57
- "jsii-docgen": "^7.1.27",
58
- "jsii-pacmak": "^1.77.0",
55
+ "jsii": "^1.78.1",
56
+ "jsii-diff": "^1.78.1",
57
+ "jsii-docgen": "^7.1.29",
58
+ "jsii-pacmak": "^1.78.1",
59
59
  "npm-check-updates": "^16",
60
- "projen": "^0.68.5",
60
+ "projen": "^0.68.11",
61
61
  "standard-version": "^9",
62
62
  "ts-jest": "^27",
63
63
  "ts-node": "^10.9.1",
64
64
  "typescript": "^4.9.5"
65
65
  },
66
66
  "peerDependencies": {
67
- "projen": "^0.68.5"
67
+ "projen": "^0.68.11"
68
68
  },
69
69
  "dependencies": {
70
70
  "commander": "^10.0.0",
@@ -82,7 +82,7 @@
82
82
  ],
83
83
  "main": "lib/index.js",
84
84
  "license": "Apache-2.0",
85
- "version": "0.1.40",
85
+ "version": "0.1.42",
86
86
  "jest": {
87
87
  "testMatch": [
88
88
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",