-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(monorepo): convert to monorepo an prepare for publish
- Loading branch information
Showing
10 changed files
with
88 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.sol linguist-language=Solidity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# aragon-cli | ||
**/**/artifact.json | ||
|
||
# coverage | ||
*/**/coverage | ||
*/**/coverageEnv | ||
*/**/coverage.json | ||
*/**/allFiredEvents | ||
*/**/scTopics | ||
|
||
# dotenv environment variables file | ||
.env | ||
|
||
# dependencies | ||
node_modules | ||
**/*/node_modules | ||
|
||
# lerna | ||
lerna-debug.log | ||
|
||
# lock files | ||
package-lock.json | ||
yarn.lock | ||
|
||
# logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# macOS env file | ||
.DS_Store | ||
|
||
# runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# truffle build artifacts | ||
*/**/abi | ||
*/**/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
package-lock=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@autark/apps-token-manager-custom", | ||
"version": "0.0.1", | ||
"name": "@autarklabs/apps-token-manager-custom", | ||
"version": "0.0.0", | ||
"main": "index.js", | ||
"scripts": { | ||
"compile": "truffle compile", | ||
|
@@ -14,7 +14,7 @@ | |
"test:gas": "GAS_REPORTER=true npm test", | ||
"coverage": "SOLIDITY_COVERAGE=true npm run ganache-cli:test", | ||
"truffle:dev": "truffle dev", | ||
"ganache-cli:test": "./node_modules/@aragon/test-helpers/ganache-cli.sh", | ||
"ganache-cli:test": "../../node_modules/@aragon/test-helpers/ganache-cli.sh", | ||
"prepare": "npm run install:frontend", | ||
"install:frontend": "cd app && npm install", | ||
"abi:extract": "truffle-extract --output abi/ --keys abi", | ||
|
@@ -28,20 +28,12 @@ | |
"/contracts", | ||
"/test" | ||
], | ||
"author": "Aragon Association <[email protected]>", | ||
"contributors": [ | ||
"Jorge Izquierdo <[email protected]>", | ||
"Pierre Bertet <[email protected]>", | ||
"Oliver Nordbjerg <[email protected]>", | ||
"Brett Sun <[email protected]>" | ||
], | ||
"license": "(GPL-3.0-or-later OR AGPL-3.0-or-later)", | ||
"description": "", | ||
"devDependencies": { | ||
"@aragon/apps-shared-migrations": "1.0.0", | ||
"@aragon/cli": "^6.0.0", | ||
"@aragon/test-helpers": "^2.1.0", | ||
"@autark/apps-whitelist-oracle": "^0.0.1", | ||
"eth-gas-reporter": "^0.2.0", | ||
"ethereumjs-testrpc-sc": "^6.5.1-sc.0", | ||
"ganache-cli": "^6.4.3", | ||
|
@@ -52,6 +44,10 @@ | |
}, | ||
"dependencies": { | ||
"@aragon/apps-shared-minime": "1.0.0", | ||
"@autarklabs/apps-whitelist-oracle": "^0.0.0", | ||
"@aragon/os": "4.2.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"hoist": true, | ||
"packages": ["apps/*"], | ||
"version": "independent" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "token-manager-custom-monorepo", | ||
"private": true, | ||
"scripts": { | ||
"postinstall": "lerna bootstrap", | ||
"test": "lerna run test" | ||
}, | ||
"devDependencies": { | ||
"lerna": "^3.20.2" | ||
} | ||
} |