creevey 0.9.0-beta.3 → 0.9.0-beta.4
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/CHANGELOG.md
CHANGED
@@ -3,9 +3,9 @@
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
4
4
|
value: true
|
5
5
|
});
|
6
|
+
exports._managerWebpack = _managerWebpack;
|
6
7
|
exports.config = config;
|
7
8
|
exports.managerEntries = managerEntries;
|
8
|
-
exports.managerWebpack = managerWebpack;
|
9
9
|
|
10
10
|
var _path = _interopRequireDefault(require("path"));
|
11
11
|
|
@@ -31,7 +31,7 @@ function managerEntries() {
|
|
31
31
|
return [...entry, require.resolve('./register')];
|
32
32
|
}
|
33
33
|
|
34
|
-
function
|
34
|
+
function _managerWebpack(config, options) {
|
35
35
|
var _options$presets$appl, _options$presets;
|
36
36
|
|
37
37
|
// TODO How to execute with non-webpack bundlers
|
@@ -10,7 +10,7 @@ export function managerEntries() {
|
|
10
10
|
let entry = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
11
11
|
return [...entry, require.resolve('./register')];
|
12
12
|
}
|
13
|
-
export function
|
13
|
+
export function _managerWebpack(config, options) {
|
14
14
|
var _options$presets$appl, _options$presets;
|
15
15
|
|
16
16
|
// TODO How to execute with non-webpack bundlers
|
@@ -20,4 +20,4 @@ export interface CreeveyAddonOptions {
|
|
20
20
|
apply: <T>(preset: string) => Promise<T | undefined>;
|
21
21
|
};
|
22
22
|
}
|
23
|
-
export declare function
|
23
|
+
export declare function _managerWebpack(config: Configuration, options: CreeveyAddonOptions): Promise<Configuration>;
|