-
-
Notifications
You must be signed in to change notification settings - Fork 219
Closed
Description
./node_modules/danfojs/src/index.js 16:9
Module parse failed: Unexpected token (16:9)
File was processed with these loaders:
* ./node_modules/babel-loader/lib/index.js
You may need an additional loader to handle the result of these loaders.
| export { Str } from "./core/strings";
| export { Utils } from "./core/utils";
> export * as tf from "@tensorflow/tfjs";
| export const _version = "0.2.5";
After reading this (tensorflow/tfjs#1333), I manually changed the file src/index.js
from
export * as tf from "@tensorflow/tfjs";
to
import * as tf from "@tensorflow/tfjs";
...
export { tf };
It works for me now. Would we consider changing that?
Metadata
Metadata
Assignees
Labels
No labels