Skip to content

Commit

Permalink
Tt 3511 - publish fix (#615)
Browse files Browse the repository at this point in the history
* chore: nx upgrade 14.8.4

* style: lint

* TT-3511 - fixed build of packages

* TT-3511 - version update

* TT-3511 - test fix

* TT-3511 - tests ignore

Co-authored-by: Nick Papirniy <nick.papirnyi@tatum.io>
  • Loading branch information
npwork and Nick Papirniy committed Oct 19, 2022
1 parent 53132c1 commit f5ab580
Show file tree
Hide file tree
Showing 149 changed files with 3,004 additions and 852 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Expand Up @@ -59,7 +59,7 @@ jobs:
run: yarn --ignore-scripts release:apply-version

# - run: npx nx-cloud start-ci-run
- run: yarn build:all
- run: yarn build:all:prod
# - run: npx nx-cloud stop-all-agents

- run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" > ~/.npmrc
Expand Down
7 changes: 4 additions & 3 deletions examples/algo-example/project.json
@@ -1,16 +1,17 @@
{
"root": "examples/algo-example",
"sourceRoot": "examples/algo-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:build",
"executor": "@nrwl/webpack:webpack",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/algo-example",
"main": "examples/algo-example/src/index.ts",
"packageJson": "examples/algo-example/package.json",
"tsConfig": "examples/algo-example/tsconfig.app.json"
"tsConfig": "examples/algo-example/tsconfig.app.json",
"target": "node",
"compiler": "tsc"
}
},
"serve": {
Expand Down
9 changes: 5 additions & 4 deletions examples/bch-example/project.json
@@ -1,20 +1,21 @@
{
"root": "examples/bch-example",
"sourceRoot": "examples/bch-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:build",
"executor": "@nrwl/webpack:webpack",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/bch-example",
"main": "examples/bch-example/src/index.ts",
"tsConfig": "examples/bch-example/tsconfig.app.json",
"packageJson": "examples/bch-example/package.json"
"packageJson": "examples/bch-example/package.json",
"target": "node",
"compiler": "tsc"
}
},
"serve": {
"executor": "@nrwl/node:execute",
"executor": "@nrwl/node:node",
"options": {
"buildTarget": "bch-example:build"
}
Expand Down
9 changes: 5 additions & 4 deletions examples/bsc-example/project.json
@@ -1,20 +1,21 @@
{
"root": "examples/bsc-example",
"sourceRoot": "examples/bsc-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:build",
"executor": "@nrwl/webpack:webpack",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/bsc-example",
"main": "examples/bsc-example/src/index.ts",
"tsConfig": "examples/bsc-example/tsconfig.app.json",
"packageJson": "examples/bsc-example/package.json"
"packageJson": "examples/bsc-example/package.json",
"target": "node",
"compiler": "tsc"
}
},
"serve": {
"executor": "@nrwl/node:execute",
"executor": "@nrwl/node:node",
"options": {
"buildTarget": "bsc-example:build"
}
Expand Down
7 changes: 4 additions & 3 deletions examples/btc-example/project.json
@@ -1,16 +1,17 @@
{
"root": "examples/btc-example",
"sourceRoot": "examples/btc-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:build",
"executor": "@nrwl/webpack:webpack",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/btc-example",
"main": "examples/btc-example/src/index.ts",
"packageJson": "examples/btc-example/package.json",
"tsConfig": "examples/btc-example/tsconfig.app.json"
"tsConfig": "examples/btc-example/tsconfig.app.json",
"target": "node",
"compiler": "tsc"
}
},
"serve": {
Expand Down
5 changes: 2 additions & 3 deletions examples/celo-example/project.json
@@ -1,10 +1,9 @@
{
"root": "examples/celo-example",
"sourceRoot": "examples/celo-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:package",
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/celo-example",
Expand All @@ -14,7 +13,7 @@
}
},
"serve": {
"executor": "@nrwl/node:execute",
"executor": "@nrwl/node:node",
"options": {
"buildTarget": "celo-example:build"
}
Expand Down
5 changes: 2 additions & 3 deletions examples/doge-example/project.json
@@ -1,10 +1,9 @@
{
"root": "examples/doge-example",
"sourceRoot": "examples/doge-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:package",
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/doge-example",
Expand All @@ -14,7 +13,7 @@
}
},
"serve": {
"executor": "@nrwl/node:execute",
"executor": "@nrwl/node:node",
"options": {
"buildTarget": "doge-example:build"
}
Expand Down
9 changes: 5 additions & 4 deletions examples/egld-example/project.json
@@ -1,20 +1,21 @@
{
"root": "examples/egld-example",
"sourceRoot": "examples/egld-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:build",
"executor": "@nrwl/webpack:webpack",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/egld-example",
"main": "examples/egld-example/src/index.ts",
"tsConfig": "examples/egld-example/tsconfig.app.json",
"packageJson": "examples/egld-example/package.json"
"packageJson": "examples/egld-example/package.json",
"target": "node",
"compiler": "tsc"
}
},
"serve": {
"executor": "@nrwl/node:execute",
"executor": "@nrwl/node:node",
"options": {
"buildTarget": "egld-example:build"
}
Expand Down
5 changes: 2 additions & 3 deletions examples/eth-example/project.json
@@ -1,10 +1,9 @@
{
"root": "examples/eth-example",
"sourceRoot": "examples/eth-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:package",
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/eth-example",
Expand All @@ -14,7 +13,7 @@
}
},
"serve": {
"executor": "@nrwl/node:execute",
"executor": "@nrwl/node:node",
"options": {
"buildTarget": "eth-example:build"
}
Expand Down
9 changes: 5 additions & 4 deletions examples/flow-example/project.json
@@ -1,20 +1,21 @@
{
"root": "examples/flow-example",
"sourceRoot": "examples/flow-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:build",
"executor": "@nrwl/webpack:webpack",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/flow-example",
"main": "examples/flow-example/src/index.ts",
"tsConfig": "examples/flow-example/tsconfig.app.json",
"packageJson": "examples/flow-example/package.json"
"packageJson": "examples/flow-example/package.json",
"target": "node",
"compiler": "tsc"
}
},
"serve": {
"executor": "@nrwl/node:execute",
"executor": "@nrwl/node:node",
"options": {
"buildTarget": "flow-example:build"
}
Expand Down
5 changes: 2 additions & 3 deletions examples/kcs-example/project.json
@@ -1,10 +1,9 @@
{
"root": "examples/kcs-example",
"sourceRoot": "examples/kcs-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:package",
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/kcs-example",
Expand All @@ -14,7 +13,7 @@
}
},
"serve": {
"executor": "@nrwl/node:execute",
"executor": "@nrwl/node:node",
"options": {
"buildTarget": "kcs-example:build"
}
Expand Down
5 changes: 2 additions & 3 deletions examples/klaytn-example/project.json
@@ -1,10 +1,9 @@
{
"root": "examples/klaytn-example",
"sourceRoot": "examples/klaytn-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:package",
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/klaytn-example",
Expand All @@ -14,7 +13,7 @@
}
},
"serve": {
"executor": "@nrwl/node:execute",
"executor": "@nrwl/node:node",
"options": {
"buildTarget": "klaytn-example:build"
}
Expand Down
9 changes: 5 additions & 4 deletions examples/ltc-example/project.json
@@ -1,20 +1,21 @@
{
"root": "examples/ltc-example",
"sourceRoot": "examples/ltc-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:build",
"executor": "@nrwl/webpack:webpack",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/ltc-example",
"main": "examples/ltc-example/src/index.ts",
"packageJson": "examples/ltc-example/package.json",
"tsConfig": "examples/ltc-example/tsconfig.app.json"
"tsConfig": "examples/ltc-example/tsconfig.app.json",
"target": "node",
"compiler": "tsc"
}
},
"serve": {
"executor": "@nrwl/node:execute",
"executor": "@nrwl/node:node",
"options": {
"buildTarget": "ltc-example:build"
}
Expand Down
5 changes: 2 additions & 3 deletions examples/one-example/project.json
@@ -1,10 +1,9 @@
{
"root": "examples/one-example",
"sourceRoot": "examples/one-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:package",
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/one-example",
Expand All @@ -14,7 +13,7 @@
}
},
"serve": {
"executor": "@nrwl/node:execute",
"executor": "@nrwl/node:node",
"options": {
"buildTarget": "one-example:build"
}
Expand Down
5 changes: 2 additions & 3 deletions examples/polygon-example/project.json
@@ -1,10 +1,9 @@
{
"root": "examples/polygon-example",
"sourceRoot": "examples/polygon-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:package",
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/polygon-example",
Expand All @@ -14,7 +13,7 @@
}
},
"serve": {
"executor": "@nrwl/node:execute",
"executor": "@nrwl/node:node",
"options": {
"buildTarget": "polygon-example:build"
}
Expand Down
9 changes: 5 additions & 4 deletions examples/sdk-example/project.json
@@ -1,20 +1,21 @@
{
"root": "examples/sdk-example",
"sourceRoot": "examples/sdk-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:build",
"executor": "@nrwl/webpack:webpack",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/sdk-example",
"main": "examples/sdk-example/src/index.ts",
"tsConfig": "examples/sdk-example/tsconfig.app.json",
"packageJson": "examples/sdk-example/package.json"
"packageJson": "examples/sdk-example/package.json",
"target": "node",
"compiler": "tsc"
}
},
"serve": {
"executor": "@nrwl/js:node",
"executor": "@nrwl/node:node",
"options": {
"buildTarget": "sdk-example:build"
}
Expand Down
9 changes: 5 additions & 4 deletions examples/solana-example/project.json
@@ -1,20 +1,21 @@
{
"root": "examples/solana-example",
"sourceRoot": "examples/solana-example/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:build",
"executor": "@nrwl/webpack:webpack",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/examples/solana-example",
"main": "examples/solana-example/src/index.ts",
"tsConfig": "examples/solana-example/tsconfig.app.json",
"packageJson": "examples/solana-example/package.json"
"packageJson": "examples/solana-example/package.json",
"target": "node",
"compiler": "tsc"
}
},
"serve": {
"executor": "@nrwl/node:execute",
"executor": "@nrwl/node:node",
"options": {
"buildTarget": "solana-example:build"
}
Expand Down

0 comments on commit f5ab580

Please sign in to comment.