testeranto 0.79.28 → 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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "testeranto",
3
3
  "description": "teeny tiny tightly-typed typescript tests",
4
- "version": "0.79.28",
4
+ "version": "0.79.29",
5
5
  "engines": {
6
6
  "node": "18.18.0"
7
7
  },
package/src/Project.ts CHANGED
@@ -155,20 +155,20 @@ export class ITProject {
155
155
  2
156
156
  )
157
157
  ),
158
- esbuild
159
- .context(esbuildFeaturesConfiger(config))
160
- .then(async (featuresContext) => {
161
- if (mode == "DEV") {
162
- await featuresContext.watch();
163
- onFeaturesDone();
164
- } else {
165
- featuresContext.rebuild().then((v) => {
166
- onFeaturesDone();
167
- });
168
- }
169
-
170
- return featuresContext;
171
- }),
158
+ // esbuild
159
+ // .context(esbuildFeaturesConfiger(config))
160
+ // .then(async (featuresContext) => {
161
+ // if (mode == "DEV") {
162
+ // await featuresContext.watch();
163
+ // onFeaturesDone();
164
+ // } else {
165
+ // featuresContext.rebuild().then((v) => {
166
+ // onFeaturesDone();
167
+ // });
168
+ // }
169
+
170
+ // return featuresContext;
171
+ // }),
172
172
  esbuild
173
173
  .context(esbuildNodeConfiger(config, nodeEntryPoints))
174
174
  .then(async (nodeContext) => {