-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleanup DApp - Remove Unused Stuff, Reorganize Rest #88
Changes from 1 commit
f6720a5
4388e69
eecdb19
15ff112
6411fe3
7d2a6c9
1fcb5e0
35e7d93
f2e6eaf
0443e6b
6dbc2d3
3b12483
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,17 +5,6 @@ | |
"description": "Agoric Orchestration Contract", | ||
"type": "module", | ||
"scripts": { | ||
"start:docker": "docker compose up -d", | ||
"docker:logs": "docker compose logs --tail 200 -f", | ||
"docker:bash": "docker compose exec agd bash", | ||
"docker:make": "docker compose exec agd make -C /workspace/contract", | ||
"make:help": "make list", | ||
"start": "make clean start", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. likewise There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
"start2": "make clean start2", | ||
"build2": "yarn build:deployer2", | ||
"build:deployer": "rollup -c rollup.config.mjs", | ||
"build:deployer2": "echo \"deployer2\"; agoric run scripts/build-contract-deployer.js", | ||
"deploy": "make dev-working", | ||
"test": "ava", | ||
"lint": "tsc && eslint '**/*.js'", | ||
"lint:fix": "eslint --fix '**/*.js'" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,22 +39,9 @@ | |
"protobufjs@npm:^7.2.5": "patch:protobufjs@npm%3A6.11.4#~/.yarn/patches/protobufjs-npm-6.11.4-af11968b80.patch" | ||
}, | ||
"scripts": { | ||
"start:docker": "cd contract && docker compose up -d", | ||
"stop:docker": "cd contract && docker compose down", | ||
"docker:logs": "cd contract; docker compose logs --tail 200 -f", | ||
"docker:bash": "cd contract; docker compose exec agd bash", | ||
"docker:make": "cd contract; docker compose exec agd make -C /workspace/contract", | ||
"make:help": "make -C contract list", | ||
"start:contract": "cd contract && yarn start", | ||
"integration-test": "cd contract && yarn ava ./test/orca-multichain.test.js", | ||
"start:ui": "cd ui && yarn dev", | ||
"format": "yarn prettier --write .github contract ui", | ||
"lint:format": "yarn prettier --check .github contract ui", | ||
"lint": "yarn lint:format && yarn workspaces foreach --all run lint", | ||
"lint:fix": "yarn format && yarn workspaces foreach --all run lint:fix", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe we need to keep this |
||
"test": "yarn workspaces foreach --all run test", | ||
"build": "yarn workspaces foreach --all run build", | ||
"postinstall": "npx patch-package" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not sure if there are any repercussions for removing this. Will let @Jovonni confirm this. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @mujahidkay brought them back. |
||
"lint:format": "yarn prettier --check .github contract ui" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "npm:20.16.8", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,9 +9,7 @@ | |
"build": "tsc && NODE_OPTIONS=--max-old-space-size=4096 vite build", | ||
"lint": "yarn tsc && eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", | ||
"lint:fix": "yarn lint --fix", | ||
"preview": "vite preview", | ||
"test": "exit 0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed. |
||
"test:e2e": "exit 0" | ||
"preview": "vite preview" | ||
}, | ||
"dependencies": { | ||
"@agoric/react-components": "0.2.1-dev-e6f79e0.0", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this
start:docker
anddocker:logs
are our getting started docs, I suggest thatyarn start:docker
and the like should give a diagnostic about what to do instead. (Be sure to give a failing exit code.)Or... if it's easy enough to just make
docker:logs
work (i.e. show the agd logs) then we should do that. (likewisedocker:bash
)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point.
start:docker
now points to readme inmultichain-testing
to setup envdocker:logs
now shows agd logsdocker:bash
now opensagoriclocal-genesis-0
shell