@tarojs/runner-utils 3.5.0-beta.1 → 3.5.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/dist/index.js +6 -6
- package/dist/resolve/MultiPlatformPlugin.js +1 -1
- package/dist/scss.js +1 -1
- package/package.json +3 -3
- package/types/index.d.ts +3 -3
package/dist/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.MultiPlatformPlugin = exports.getSassLoaderOption = exports.getBundleResult = exports.getBundleContent = exports.DEFAULT_Components = void 0;
|
|
4
|
+
const constant_1 = require("./constant");
|
|
5
|
+
Object.defineProperty(exports, "DEFAULT_Components", { enumerable: true, get: function () { return constant_1.DEFAULT_Components; } });
|
|
6
|
+
const MultiPlatformPlugin_1 = require("./resolve/MultiPlatformPlugin");
|
|
7
|
+
Object.defineProperty(exports, "MultiPlatformPlugin", { enumerable: true, get: function () { return MultiPlatformPlugin_1.MultiPlatformPlugin; } });
|
|
4
8
|
const scss_1 = require("./scss");
|
|
5
|
-
Object.defineProperty(exports, "getBundleResult", { enumerable: true, get: function () { return scss_1.getBundleResult; } });
|
|
6
9
|
Object.defineProperty(exports, "getBundleContent", { enumerable: true, get: function () { return scss_1.getBundleContent; } });
|
|
10
|
+
Object.defineProperty(exports, "getBundleResult", { enumerable: true, get: function () { return scss_1.getBundleResult; } });
|
|
7
11
|
Object.defineProperty(exports, "getSassLoaderOption", { enumerable: true, get: function () { return scss_1.getSassLoaderOption; } });
|
|
8
|
-
const MultiPlatformPlugin_1 = require("./resolve/MultiPlatformPlugin");
|
|
9
|
-
Object.defineProperty(exports, "MultiPlatformPlugin", { enumerable: true, get: function () { return MultiPlatformPlugin_1.MultiPlatformPlugin; } });
|
|
10
|
-
const constant_1 = require("./constant");
|
|
11
|
-
Object.defineProperty(exports, "DEFAULT_Components", { enumerable: true, get: function () { return constant_1.DEFAULT_Components; } });
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.MultiPlatformPlugin = void 0;
|
|
4
|
-
const path = require("path");
|
|
5
4
|
const helper_1 = require("@tarojs/helper");
|
|
5
|
+
const path = require("path");
|
|
6
6
|
/**
|
|
7
7
|
* @description 此 enhance-resolve 插件用于根据当前编译的平台,解析多端文件的后缀
|
|
8
8
|
*
|
package/dist/scss.js
CHANGED
|
@@ -10,9 +10,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.getSassLoaderOption = exports.getBundleContent = exports.getBundleResult = void 0;
|
|
13
|
-
const scss_bundle_1 = require("scss-bundle");
|
|
14
13
|
const helper_1 = require("@tarojs/helper");
|
|
15
14
|
const path = require("path");
|
|
15
|
+
const scss_bundle_1 = require("scss-bundle");
|
|
16
16
|
/**
|
|
17
17
|
* Return bundled sass content.
|
|
18
18
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/runner-utils",
|
|
3
|
-
"version": "3.5.0-beta.
|
|
3
|
+
"version": "3.5.0-beta.4",
|
|
4
4
|
"description": "Taro runner utilities.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"author": "garfield550",
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@tarojs/helper": "3.5.0-beta.
|
|
25
|
+
"@tarojs/helper": "3.5.0-beta.4",
|
|
26
26
|
"scss-bundle": "^3.0.2"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "7aca7841ed7e2af1b182ff5d24e91f44730ce783"
|
|
29
29
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { getBundleResult, getBundleContent, getSassLoaderOption } from './scss';
|
|
2
|
-
import { MultiPlatformPlugin } from './resolve/MultiPlatformPlugin';
|
|
3
1
|
import { DEFAULT_Components } from './constant';
|
|
4
|
-
|
|
2
|
+
import { MultiPlatformPlugin } from './resolve/MultiPlatformPlugin';
|
|
3
|
+
import { getBundleContent, getBundleResult, getSassLoaderOption } from './scss';
|
|
4
|
+
export { DEFAULT_Components, getBundleContent, getBundleResult, getSassLoaderOption, MultiPlatformPlugin };
|