Skip to content

Commit

Permalink
moves Shape src into a sub-folder
Browse files Browse the repository at this point in the history
  • Loading branch information
davelandry committed Nov 10, 2016
1 parent 9125e10 commit 7737b81
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export {default as Area} from "./src/Area";
export {default as Circle} from "./src/Circle";
export {default as Image} from "./src/Image";
export {default as Line} from "./src/Line";
export {default as Path} from "./src/Path";
export {default as Rect} from "./src/Rect";
export {default as Area} from "./src/Shape/Area";
export {default as Circle} from "./src/Shape/Circle";
export {default as Image} from "./src/Shape/Image";
export {default as Line} from "./src/Shape/Line";
export {default as Path} from "./src/Shape/Path";
export {default as Rect} from "./src/Shape/Rect";
export {default as Shape} from "./src/Shape";
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/Shape.js → src/Shape/Shape.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {transition} from "d3-transition";
import {accessor, attrize, BaseClass, constant} from "d3plus-common";
import {contrast} from "d3plus-color";
import {strip, TextBox} from "d3plus-text";
import {default as Image} from "./Image";
import {default as Image} from "../Image";

/**
@class Shape
Expand Down
2 changes: 1 addition & 1 deletion test/Rect.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {test} from "tape";
import {default as Rect} from "../src/Rect.js";
import {default as Rect} from "../src/Shape/Rect";

test("Rect", assert => {

Expand Down

0 comments on commit 7737b81

Please sign in to comment.