Skip to content

Commit

Permalink
Missing default export
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbol99 committed Feb 14, 2019
1 parent 363ccd4 commit b04cef8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/core/dist/main.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -5436,4 +5436,4 @@ exports.arc = arc;
exports.box = box;
exports.ray = ray;
exports.ray_shoot = ray_shoot;
exports.Flatten = Flatten;
exports.default = Flatten;
3 changes: 2 additions & 1 deletion packages/core/dist/main.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -5407,4 +5407,5 @@ Flatten.Distance = Distance;
* Created by Alex Bol on 2/18/2017.
*/

export { Utils, errors as Errors, Matrix, PlanarSet, Point, Vector, Segment, Line, Circle, Arc, Box, Edge, Face, Ray, Polygon, matrix, point, vector, circle, line, segment, arc, box, ray, ray_shoot, Flatten };
export default Flatten;
export { Utils, errors as Errors, Matrix, PlanarSet, Point, Vector, Segment, Line, Circle, Arc, Box, Edge, Face, Ray, Polygon, matrix, point, vector, circle, line, segment, arc, box, ray, ray_shoot };
2 changes: 1 addition & 1 deletion packages/core/dist/main.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -5438,7 +5438,7 @@
exports.box = box;
exports.ray = ray;
exports.ray_shoot = ray_shoot;
exports.Flatten = Flatten;
exports.default = Flatten;

Object.defineProperty(exports, '__esModule', { value: true });

Expand Down
2 changes: 1 addition & 1 deletion packages/core/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ export {Utils, Errors} from 'flatten-js';
export {Matrix, PlanarSet, Point, Vector, Segment, Line, Circle, Arc, Box, Edge, Face, Ray, Polygon} from 'flatten-js';
export {matrix, point, vector, circle, line, segment, arc, box, ray} from 'flatten-js';
export {ray_shoot} from 'flatten-js';
export {default as Flatten} from 'flatten-js';
export {default} from 'flatten-js';
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flatten-js/core",
"version": "1.0.4",
"version": "1.0.5",
"description": "Javascript library for 2d geometry",
"main": "packages/core/dist/main.cjs.js",
"umd:main": "packages/core/dist/main.umd.js",
Expand Down

0 comments on commit b04cef8

Please sign in to comment.