@iebh/tera-fy 2.0.4 → 2.0.5

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.
@@ -1259,7 +1259,11 @@ export default class TeraFyServer {
1259
1259
  };
1260
1260
 
1261
1261
  return Promise.resolve()
1262
- .then(()=> settings.autoRequire && this.requireProject())
1262
+ .then(()=> {
1263
+ console.log('Checking for project, is required:', settings.autoRequire);
1264
+ settings.autoRequire && this.requireProject()
1265
+ console.log('Project set!')
1266
+ })
1263
1267
  .then(()=> {
1264
1268
  if (settings.id) return; // We already have a file ID specified - skip
1265
1269
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iebh/tera-fy",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "TERA website worker",
5
5
  "scripts": {
6
6
  "dev": "esbuild --platform=browser --format=esm --bundle lib/terafy.client.js --outfile=dist/terafy.js --minify --serve --servedir=.",