1
0
Fork 0

chore(core): Migrated core from rollup to esbuild

This commit is contained in:
Joost De Cock 2022-06-12 21:49:34 +02:00
parent 87939f331f
commit ac7b1de00e
17 changed files with 198 additions and 34 deletions

View file

@ -1,5 +1,5 @@
const expect = require("chai").expect;
const Point = require("./dist").Point;
const Point = require("../dist/index.js").Point;
const newAttr = () => new Point(0, 0).attributes;