Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelomorgado committed Feb 28, 2019
1 parent 52e3623 commit 59e65b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"scripts": {
"clean:3rd-parties": "npx lerna run clean:3rd-parties --scope tasit-contracts",
"clean:all": "npm run clean:3rd-parties && npx lerna clean --yes && rm -rf ./node_modules && npx lerna --scope tasit-contracts exec -- rm -rf ./build",
"clean:all": "npm run clean:3rd-parties && npx lerna clean --yes && rm -rf ./node_modules",
"publish": "npm run clean:all && npm run bootstrap && npm test && npm run clean:3rd-parties && npx lerna publish",
"bootstrap": "npx lerna bootstrap --hoist",
"ganache:start:ropsten": "npx ganache-cli --fork https://ropsten.infura.io/latest --blockTime 0.1 -m 'beach swap combine paper music cook electric bullet trust actress liquid asthma' --gasLimit 1000000000000 --host 0.0.0.0 > /dev/null 2>&1 &",
Expand Down
2 changes: 1 addition & 1 deletion packages/tasit-contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"scripts": {
"prepare": "npm run install:3rd-parties",
"migrate": "npx truffle migrate && npm run migrate:3rd-parties",
"migrate": "rm -rf ./build && npx truffle migrate && npm run migrate:3rd-parties",
"test": "npx truffle test",
"install:3rd-parties": "./3rd-parties/run_on_all.sh install `pwd`",
"migrate:3rd-parties": "./3rd-parties/run_on_all.sh migrate `pwd`",
Expand Down
3 changes: 1 addition & 2 deletions packages/tasit-sdk/src/Decentraland.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { Account, Action } from "./TasitSdk";
const { Contract, ERC721 } = Action;
import { Account } from "./TasitSdk";

const { ONE, TEN } = constants;

Expand Down

0 comments on commit 59e65b0

Please sign in to comment.