testeranto 0.79.27 → 0.79.29

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.
@@ -5,7 +5,6 @@ import readline from "readline";
5
5
  import { glob } from "glob";
6
6
  import esbuildNodeConfiger from "./esbuildConfigs/node.js";
7
7
  import esbuildWebConfiger from "./esbuildConfigs/web.js";
8
- import esbuildFeaturesConfiger from "./esbuildConfigs/features.js";
9
8
  import webHtmlFrame from "./web.html.js";
10
9
  var mode = process.argv[2] === "-dev" ? "DEV" : "PROD";
11
10
  readline.emitKeypressEvents(process.stdin);
@@ -97,20 +96,19 @@ export class ITProject {
97
96
  });
98
97
  Promise.all([
99
98
  fs.promises.writeFile(`${config.outdir}/testeranto.json`, JSON.stringify(Object.assign(Object.assign({}, config), { buildDir: process.cwd() + "/" + config.outdir }), null, 2)),
100
- esbuild
101
- .context(esbuildFeaturesConfiger(config))
102
- .then(async (featuresContext) => {
103
- if (mode == "DEV") {
104
- await featuresContext.watch();
105
- onFeaturesDone();
106
- }
107
- else {
108
- featuresContext.rebuild().then((v) => {
109
- onFeaturesDone();
110
- });
111
- }
112
- return featuresContext;
113
- }),
99
+ // esbuild
100
+ // .context(esbuildFeaturesConfiger(config))
101
+ // .then(async (featuresContext) => {
102
+ // if (mode == "DEV") {
103
+ // await featuresContext.watch();
104
+ // onFeaturesDone();
105
+ // } else {
106
+ // featuresContext.rebuild().then((v) => {
107
+ // onFeaturesDone();
108
+ // });
109
+ // }
110
+ // return featuresContext;
111
+ // }),
114
112
  esbuild
115
113
  .context(esbuildNodeConfiger(config, nodeEntryPoints))
116
114
  .then(async (nodeContext) => {