vite-plugin-fenom 1.0.10 → 1.0.11

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,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-fenom",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "type": "module",
5
5
  "main": "./vite-plugin-fenom.cjs",
6
6
  "exports": {
@@ -1374,7 +1374,6 @@ function compile(ast, loader) {
1374
1374
  }
1375
1375
  if (parentFile) {
1376
1376
  return async function (context, filters) {
1377
- console.log('context', context);
1378
1377
  if (!loader) {
1379
1378
  throw new Error(`Template uses {extends '${parentFile}'}, but no loader provided`);
1380
1379
  }
@@ -1410,7 +1409,6 @@ function compile(ast, loader) {
1410
1409
  }
1411
1410
  else {
1412
1411
  return async function (context, filters) {
1413
- console.log('context_no-parent', context);
1414
1412
  return await compileAST(ast, loader, context, filters);
1415
1413
  };
1416
1414
  }