lerna-projen 0.1.39 → 0.1.41

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.2"
17
+ "projen": "^0.68.6"
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.39",
785
- "fingerprint": "0NZ45oWyrStHkQhlGzboN6MUyxkmqHHZIsZNJJaMTg4="
784
+ "version": "0.1.41",
785
+ "fingerprint": "bU+HDzQwTNi0NbAN7m4m8WIV67hwpcZgz7FAdWWcVXU="
786
786
  }
package/API.md CHANGED
@@ -106,6 +106,7 @@ const lernaProjectOptions: LernaProjectOptions = { ... }
106
106
  | --- | --- | --- |
107
107
  | <code><a href="#lerna-projen.LernaProjectOptions.property.name">name</a></code> | <code>string</code> | This is the name of your project. |
108
108
  | <code><a href="#lerna-projen.LernaProjectOptions.property.commitGenerated">commitGenerated</a></code> | <code>boolean</code> | Whether to commit the managed files by default. |
109
+ | <code><a href="#lerna-projen.LernaProjectOptions.property.gitIgnoreOptions">gitIgnoreOptions</a></code> | <code>projen.IgnoreFileOptions</code> | Configuration options for .gitignore file. |
109
110
  | <code><a href="#lerna-projen.LernaProjectOptions.property.gitOptions">gitOptions</a></code> | <code>projen.GitOptions</code> | Configuration options for git. |
110
111
  | <code><a href="#lerna-projen.LernaProjectOptions.property.logging">logging</a></code> | <code>projen.LoggerOptions</code> | Configure logging options such as verbosity. |
111
112
  | <code><a href="#lerna-projen.LernaProjectOptions.property.outdir">outdir</a></code> | <code>string</code> | The root directory of the project. |
@@ -207,6 +208,7 @@ const lernaProjectOptions: LernaProjectOptions = { ... }
207
208
  | <code><a href="#lerna-projen.LernaProjectOptions.property.mutableBuild">mutableBuild</a></code> | <code>boolean</code> | Automatically update files modified during builds to pull-request branches. |
208
209
  | <code><a href="#lerna-projen.LernaProjectOptions.property.npmignore">npmignore</a></code> | <code>string[]</code> | Additional entries to .npmignore. |
209
210
  | <code><a href="#lerna-projen.LernaProjectOptions.property.npmignoreEnabled">npmignoreEnabled</a></code> | <code>boolean</code> | Defines an .npmignore file. Normally this is only needed for libraries that are packaged as tarballs. |
211
+ | <code><a href="#lerna-projen.LernaProjectOptions.property.npmIgnoreOptions">npmIgnoreOptions</a></code> | <code>projen.IgnoreFileOptions</code> | Configuration options for .npmignore file. |
210
212
  | <code><a href="#lerna-projen.LernaProjectOptions.property.package">package</a></code> | <code>boolean</code> | Defines a `package` task that will produce an npm tarball under the artifacts directory (e.g. `dist`). |
211
213
  | <code><a href="#lerna-projen.LernaProjectOptions.property.prettier">prettier</a></code> | <code>boolean</code> | Setup prettier. |
212
214
  | <code><a href="#lerna-projen.LernaProjectOptions.property.prettierOptions">prettierOptions</a></code> | <code>projen.javascript.PrettierOptions</code> | Prettier options. |
@@ -259,6 +261,18 @@ Whether to commit the managed files by default.
259
261
 
260
262
  ---
261
263
 
264
+ ##### `gitIgnoreOptions`<sup>Optional</sup> <a name="gitIgnoreOptions" id="lerna-projen.LernaProjectOptions.property.gitIgnoreOptions"></a>
265
+
266
+ ```typescript
267
+ public readonly gitIgnoreOptions: IgnoreFileOptions;
268
+ ```
269
+
270
+ - *Type:* projen.IgnoreFileOptions
271
+
272
+ Configuration options for .gitignore file.
273
+
274
+ ---
275
+
262
276
  ##### `gitOptions`<sup>Optional</sup> <a name="gitOptions" id="lerna-projen.LernaProjectOptions.property.gitOptions"></a>
263
277
 
264
278
  ```typescript
@@ -1723,6 +1737,18 @@ Defines an .npmignore file. Normally this is only needed for libraries that are
1723
1737
 
1724
1738
  ---
1725
1739
 
1740
+ ##### `npmIgnoreOptions`<sup>Optional</sup> <a name="npmIgnoreOptions" id="lerna-projen.LernaProjectOptions.property.npmIgnoreOptions"></a>
1741
+
1742
+ ```typescript
1743
+ public readonly npmIgnoreOptions: IgnoreFileOptions;
1744
+ ```
1745
+
1746
+ - *Type:* projen.IgnoreFileOptions
1747
+
1748
+ Configuration options for .npmignore file.
1749
+
1750
+ ---
1751
+
1726
1752
  ##### `package`<sup>Optional</sup> <a name="package" id="lerna-projen.LernaProjectOptions.property.package"></a>
1727
1753
 
1728
1754
  ```typescript
@@ -2040,6 +2066,7 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
2040
2066
  | --- | --- | --- |
2041
2067
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.name">name</a></code> | <code>string</code> | This is the name of your project. |
2042
2068
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.commitGenerated">commitGenerated</a></code> | <code>boolean</code> | Whether to commit the managed files by default. |
2069
+ | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.gitIgnoreOptions">gitIgnoreOptions</a></code> | <code>projen.IgnoreFileOptions</code> | Configuration options for .gitignore file. |
2043
2070
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.gitOptions">gitOptions</a></code> | <code>projen.GitOptions</code> | Configuration options for git. |
2044
2071
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.logging">logging</a></code> | <code>projen.LoggerOptions</code> | Configure logging options such as verbosity. |
2045
2072
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.outdir">outdir</a></code> | <code>string</code> | The root directory of the project. |
@@ -2141,6 +2168,7 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
2141
2168
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.mutableBuild">mutableBuild</a></code> | <code>boolean</code> | Automatically update files modified during builds to pull-request branches. |
2142
2169
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.npmignore">npmignore</a></code> | <code>string[]</code> | Additional entries to .npmignore. |
2143
2170
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.npmignoreEnabled">npmignoreEnabled</a></code> | <code>boolean</code> | Defines an .npmignore file. Normally this is only needed for libraries that are packaged as tarballs. |
2171
+ | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.npmIgnoreOptions">npmIgnoreOptions</a></code> | <code>projen.IgnoreFileOptions</code> | Configuration options for .npmignore file. |
2144
2172
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.package">package</a></code> | <code>boolean</code> | Defines a `package` task that will produce an npm tarball under the artifacts directory (e.g. `dist`). |
2145
2173
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.prettier">prettier</a></code> | <code>boolean</code> | Setup prettier. |
2146
2174
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.prettierOptions">prettierOptions</a></code> | <code>projen.javascript.PrettierOptions</code> | Prettier options. |
@@ -2207,6 +2235,18 @@ Whether to commit the managed files by default.
2207
2235
 
2208
2236
  ---
2209
2237
 
2238
+ ##### `gitIgnoreOptions`<sup>Optional</sup> <a name="gitIgnoreOptions" id="lerna-projen.LernaTypescriptProjectOptions.property.gitIgnoreOptions"></a>
2239
+
2240
+ ```typescript
2241
+ public readonly gitIgnoreOptions: IgnoreFileOptions;
2242
+ ```
2243
+
2244
+ - *Type:* projen.IgnoreFileOptions
2245
+
2246
+ Configuration options for .gitignore file.
2247
+
2248
+ ---
2249
+
2210
2250
  ##### `gitOptions`<sup>Optional</sup> <a name="gitOptions" id="lerna-projen.LernaTypescriptProjectOptions.property.gitOptions"></a>
2211
2251
 
2212
2252
  ```typescript
@@ -3671,6 +3711,18 @@ Defines an .npmignore file. Normally this is only needed for libraries that are
3671
3711
 
3672
3712
  ---
3673
3713
 
3714
+ ##### `npmIgnoreOptions`<sup>Optional</sup> <a name="npmIgnoreOptions" id="lerna-projen.LernaTypescriptProjectOptions.property.npmIgnoreOptions"></a>
3715
+
3716
+ ```typescript
3717
+ public readonly npmIgnoreOptions: IgnoreFileOptions;
3718
+ ```
3719
+
3720
+ - *Type:* projen.IgnoreFileOptions
3721
+
3722
+ Configuration options for .npmignore file.
3723
+
3724
+ ---
3725
+
3674
3726
  ##### `package`<sup>Optional</sup> <a name="package" id="lerna-projen.LernaTypescriptProjectOptions.property.package"></a>
3675
3727
 
3676
3728
  ```typescript
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.39" };
93
+ LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.41" };
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.39" };
138
+ LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.41" };
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.26",
58
- "jsii-pacmak": "^1.77.0",
55
+ "jsii": "^1.78.1",
56
+ "jsii-diff": "^1.78.1",
57
+ "jsii-docgen": "^7.1.28",
58
+ "jsii-pacmak": "^1.78.1",
59
59
  "npm-check-updates": "^16",
60
- "projen": "^0.68.2",
60
+ "projen": "^0.68.6",
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.2"
67
+ "projen": "^0.68.6"
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.39",
85
+ "version": "0.1.41",
86
86
  "jest": {
87
87
  "testMatch": [
88
88
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",