@output.ai/core 0.1.4 → 0.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@output.ai/core",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "The core module of the output framework",
5
5
  "type": "module",
6
6
  "exports": {
@@ -28,8 +28,5 @@ export default ( additionalIgnorePaths = [] ) => {
28
28
  if ( !frame ) {
29
29
  throw new Error( `Invocation dir resolution via stack trace failed. Stack: ${stack}` );
30
30
  }
31
- console.log( 'frame', frame );
32
- const invocationDir = frame.file.replace( 'file://', '' ).split( SEP ).slice( 0, -1 ).join( SEP );
33
- console.log( 'invocationDir', invocationDir );
34
- return invocationDir;
31
+ return frame.file.replace( 'file://', '' ).split( SEP ).slice( 0, -1 ).join( SEP );
35
32
  };