browser-extension-manager 1.3.23 → 1.3.24
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/dist/cli.js
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
const path = require('path');
|
|
3
3
|
const jetpack = require('fs-jetpack');
|
|
4
4
|
|
|
5
|
+
// Load .env file from current working directory (project root)
|
|
6
|
+
require('dotenv').config({ path: path.join(process.cwd(), '.env') });
|
|
7
|
+
|
|
5
8
|
// Command Aliases
|
|
6
9
|
const DEFAULT = 'setup';
|
|
7
10
|
const ALIASES = {
|
|
@@ -6,7 +6,7 @@ const glob = require('glob').globSync;
|
|
|
6
6
|
const path = require('path');
|
|
7
7
|
const wp = require('webpack');
|
|
8
8
|
const ReplacePlugin = require('../plugins/webpack/replace.js');
|
|
9
|
-
const stripDevBlocksLoader = require.resolve('../loaders/webpack/strip-dev-blocks
|
|
9
|
+
const stripDevBlocksLoader = require.resolve('../loaders/webpack/strip-dev-blocks.js');
|
|
10
10
|
const version = require('wonderful-version');
|
|
11
11
|
|
|
12
12
|
// Load package
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browser-extension-manager",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.24",
|
|
4
4
|
"description": "Browser Extension Manager dependency manager",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"gulp-rename": "^2.1.0",
|
|
80
80
|
"gulp-responsive-modern": "^1.0.0",
|
|
81
81
|
"gulp-sass": "^6.0.1",
|
|
82
|
-
"itwcw-package-analytics": "^1.0.
|
|
82
|
+
"itwcw-package-analytics": "^1.0.8",
|
|
83
83
|
"json5": "^2.2.3",
|
|
84
84
|
"lodash": "^4.17.23",
|
|
85
85
|
"minimatch": "^10.1.1",
|