Skip to content

Commit

Permalink
chore(minime): publish abi and build files (#628)
Browse files Browse the repository at this point in the history
  • Loading branch information
sohkai committed Jan 18, 2019
1 parent 7179b93 commit 12a6c32
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -16,8 +16,8 @@ node_modules
lerna-debug.log

# truffle build artifacts
*/**/abi
*/**/build
*/**/abis.json
*/**/.DS_Store

# yarn
Expand Down
1 change: 1 addition & 0 deletions shared/minime/contracts/.npmignore
@@ -0,0 +1 @@
/test
16 changes: 13 additions & 3 deletions shared/minime/package.json
@@ -1,20 +1,30 @@
{
"name": "@aragon/apps-shared-minime",
"version": "1.0.0",
"version": "1.0.1",
"author": "Jordi Baylina",
"license": "GPL-3.0-or-later",
"files": [
"/abi",
"/build",
"/contracts",
"/test",
"/truffle.js"
],
"scripts": {
"abi:extract": "truffle-extract --output abi/ --keys abi",
"compile": "truffle compile",
"test": "TRUFFLE_TEST=true npm run ganache-cli:test",
"coverage": "SOLIDITY_COVERAGE=true npm run ganache-cli:test",
"ganache-cli:test": "./node_modules/@aragon/test-helpers/ganache-cli.sh",
"truffle:dev": "npx truffle dev"
"truffle:dev": "npx truffle dev",
"prepublishOnly": "truffle compile --all && npm run abi:extract -- --no-compile"
},
"devDependencies": {
"@aragon/apps-shared-migrations": "1.0.0",
"@aragon/test-helpers": "^1.0.1",
"ganache-cli": "6.1.8",
"solidity-coverage": "0.5.8",
"truffle": "4.1.14"
"truffle": "4.1.14",
"truffle-extract": "^1.2.1"
}
}

0 comments on commit 12a6c32

Please sign in to comment.