Skip to content

Commit

Permalink
fix package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Kristiantvaa authored and jonasdeluna committed Jul 4, 2024
1 parent c7946ba commit a63fdda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"troika-three-text": "^0.47.2"
},
"scripts": {
"dev": "yarn rollup -c --watch",
"dev": "rm -rf dist && NODE_ENV='development' yarn rollup -c --watch",
"run": "yarn dev",
"dist": "rm dist -r & yarn tsc && yarn webpack build",
"prettier": "prettier --write --ignore-path .gitignore .",
Expand Down
4 changes: 2 additions & 2 deletions src/Components/Derived/BarDiagram.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Group } from "three";
import { toVector2 } from "../../utils";
import Line from "../Line";
import Polygon from "../Shape";
import Text from "../Text";
import Line from "../Line";
import { Component } from "../interfaces";
import { InputPosition } from "../types";
import { toVector2 } from "../../utils";

type BarDiagramOptions = {
basePosition?: InputPosition;
Expand Down

0 comments on commit a63fdda

Please sign in to comment.