@oclif/core 2.8.2 → 2.8.3

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.
@@ -32,6 +32,7 @@ export declare class Config implements IConfig {
32
32
  version: string;
33
33
  windows: boolean;
34
34
  binAliases?: string[];
35
+ nsisCustomization?: string;
35
36
  protected warned: boolean;
36
37
  private commandPermutations;
37
38
  private topicPermutations;
@@ -100,6 +100,7 @@ class Config {
100
100
  this.windows = this.platform === 'win32';
101
101
  this.bin = this.pjson.oclif.bin || this.name;
102
102
  this.binAliases = this.pjson.oclif.binAliases;
103
+ this.nsisCustomization = this.pjson.oclif.nsisCustomization;
103
104
  this.dirname = this.pjson.oclif.dirname || this.name;
104
105
  this.flexibleTaxonomy = this.pjson.oclif.flexibleTaxonomy || false;
105
106
  // currently, only colons or spaces are valid separators
@@ -81,6 +81,7 @@ export declare namespace PJSON {
81
81
  schema?: number;
82
82
  bin?: string;
83
83
  binAliases?: string[];
84
+ nsisCustomization?: string;
84
85
  npmRegistry?: string;
85
86
  scope?: string;
86
87
  dirname?: string;
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": "2.8.2",
4
+ "version": "2.8.3",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/core/issues",
7
7
  "dependencies": {