@oclif/core 4.3.3 → 4.4.0
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/lib/interfaces/pjson.d.ts +14 -0
- package/package.json +2 -2
|
@@ -241,6 +241,20 @@ export type OclifConfiguration = {
|
|
|
241
241
|
subtopics?: OclifConfiguration['topics'];
|
|
242
242
|
};
|
|
243
243
|
};
|
|
244
|
+
/**
|
|
245
|
+
* Tar flags configuration for different platforms.
|
|
246
|
+
*
|
|
247
|
+
* {
|
|
248
|
+
* "tarFlags": {
|
|
249
|
+
* "win32": "--force-local",
|
|
250
|
+
* "darwin": "--no-xattrs"
|
|
251
|
+
* }
|
|
252
|
+
* }
|
|
253
|
+
*
|
|
254
|
+
*/
|
|
255
|
+
tarFlags?: {
|
|
256
|
+
[platform: string]: string;
|
|
257
|
+
};
|
|
244
258
|
update?: {
|
|
245
259
|
autoupdate?: {
|
|
246
260
|
debounce?: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/core",
|
|
3
3
|
"description": "base library for oclif CLIs",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.4.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/core/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@commitlint/config-conventional": "^19",
|
|
29
|
-
"@eslint/compat": "^1.
|
|
29
|
+
"@eslint/compat": "^1.3.0",
|
|
30
30
|
"@oclif/plugin-help": "^6",
|
|
31
31
|
"@oclif/plugin-plugins": "^5",
|
|
32
32
|
"@oclif/prettier-config": "^0.2.1",
|