Migrate to yarn (#364)
* Migrate to yarn * Remove package-lock.json * v0.0.0 * Update yarn.lock * Add .yarnrc.yml * Add .yarn/releases * Add .yarn/cache * Print out error * Resolving * Remove file references * remove cat * Add .gitignore * Add .gitignore * Add prettier plugin * Update yarn.lock * Add .yarn/cache * buist * Add build script * Add lint-prettier.sh * Remove cache * Remove env files * Newlines * Modify package.json * Add typescript as devDependencypull/372/head
parent
cee9a2d8ef
commit
30888396c3
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,7 @@ |
|||||||
|
nodeLinker: node-modules |
||||||
|
|
||||||
|
plugins: |
||||||
|
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs |
||||||
|
spec: "@yarnpkg/plugin-workspace-tools" |
||||||
|
|
||||||
|
yarnPath: .yarn/releases/yarn-3.2.0.cjs |
@ -0,0 +1,12 @@ |
|||||||
|
#!/bin/bash |
||||||
|
set -exuo pipefail |
||||||
|
|
||||||
|
yarn workspace @abacus-network/utils run build |
||||||
|
yarn workspace @abacus-network/core run build |
||||||
|
yarn workspace @abacus-network/hardhat run build |
||||||
|
yarn workspace @abacus-network/app run build |
||||||
|
yarn workspace @abacus-network/apps run build |
||||||
|
yarn workspace @abacus-network/sdk run build |
||||||
|
yarn workspace @abacus-network/contract-metrics run build |
||||||
|
yarn workspace @abacus-network/deploy run build |
||||||
|
yarn workspace @abacus-network/infra run build |
@ -0,0 +1,12 @@ |
|||||||
|
#!/bin/bash |
||||||
|
set -exuo pipefail |
||||||
|
|
||||||
|
yarn workspace @abacus-network/utils run prettier |
||||||
|
yarn workspace @abacus-network/core run prettier |
||||||
|
yarn workspace @abacus-network/hardhat run prettier |
||||||
|
yarn workspace @abacus-network/app run prettier |
||||||
|
yarn workspace @abacus-network/apps run prettier |
||||||
|
yarn workspace @abacus-network/sdk run prettier |
||||||
|
yarn workspace @abacus-network/contract-metrics run prettier |
||||||
|
yarn workspace @abacus-network/deploy run prettier |
||||||
|
yarn workspace @abacus-network/infra run prettier |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue