fast-cocos 1.0.6 → 1.0.7
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/xlsx/src/index.js +1 -2
- package/package.json +1 -1
package/dist/xlsx/src/index.js
CHANGED
|
@@ -14,7 +14,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
const commander_1 = require("commander");
|
|
16
16
|
const path_1 = __importDefault(require("path"));
|
|
17
|
-
const logger_1 = __importDefault(require("../../logger"));
|
|
18
17
|
const XlsxParser_1 = __importDefault(require("./XlsxParser"));
|
|
19
18
|
function main() {
|
|
20
19
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -32,7 +31,7 @@ function main() {
|
|
|
32
31
|
if (/\/snapshot\//.test(scriptPath)) {
|
|
33
32
|
execDir = path_1.default.dirname(process.execPath);
|
|
34
33
|
}
|
|
35
|
-
|
|
34
|
+
console.info("\x1b[32m%s\x1b[0m", "执行目录: " + execDir);
|
|
36
35
|
const xlsxParser = new XlsxParser_1.default({
|
|
37
36
|
execDir,
|
|
38
37
|
tmpDir: path_1.default.join(options.source, "json"),
|