codify-plugin-lib 1.0.182-beta65 → 1.0.182-beta66

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.
@@ -42,5 +42,5 @@ export declare const Utils: {
42
42
  isFedora(): Promise<boolean>;
43
43
  isRHEL(): Promise<boolean>;
44
44
  isDebianBased(): boolean;
45
- isRPMBased(): boolean;
45
+ isRedhatBased(): boolean;
46
46
  };
@@ -253,7 +253,7 @@ Brew can be installed using Codify:
253
253
  isDebianBased() {
254
254
  return fsSync.existsSync('/etc/debian_version');
255
255
  },
256
- isRPMBased() {
256
+ isRedhatBased() {
257
257
  return fsSync.existsSync('/etc/redhat-release');
258
258
  }
259
259
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-plugin-lib",
3
- "version": "1.0.182-beta65",
3
+ "version": "1.0.182-beta66",
4
4
  "description": "Library plugin library",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -319,7 +319,7 @@ Brew can be installed using Codify:
319
319
  return fsSync.existsSync('/etc/debian_version');
320
320
  },
321
321
 
322
- isRPMBased(): boolean {
322
+ isRedhatBased(): boolean {
323
323
  return fsSync.existsSync('/etc/redhat-release');
324
324
  }
325
325
  };