Skip to content

Commit 40eca83

Browse files
authored
Merge pull request #1481 from polywrap/pileks/chore/build-patch-script-removal
Chore: remove build:patch command from packages
2 parents 0bf1517 + 9a091d0 commit 40eca83

12 files changed

Lines changed: 9 additions & 21 deletions

File tree

packages/interfaces/file-system/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"version": "0.10.0-pre.7",
55
"scripts": {
66
"build": "node ../../../dependencies/node_modules/polywrap/bin/polywrap build",
7-
"build:patch": "node ../../cli/bin/polywrap build",
87
"lint": "eslint --color -c ../../../.eslintrc.js .",
98
"test:env:up": "npx polywrap infra up --modules=eth-ens-ipfs",
109
"test:env:down": "npx polywrap infra down --modules=eth-ens-ipfs",

packages/interfaces/ipfs/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"version": "0.10.0-pre.7",
55
"scripts": {
66
"build": "node ../../../dependencies/node_modules/polywrap/bin/polywrap build",
7-
"build:patch": "node ../../cli/bin/polywrap build",
87
"lint": "eslint --color -c ../../../.eslintrc.js .",
98
"test:env:up": "npx polywrap infra up --modules=eth-ens-ipfs",
109
"test:env:down": "npx polywrap infra down --modules=eth-ens-ipfs",

packages/interfaces/uri-resolver/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"version": "0.10.0-pre.7",
55
"scripts": {
66
"build": "node ../../../dependencies/node_modules/polywrap/bin/polywrap build",
7-
"build:patch": "node ../../cli/bin/polywrap build",
87
"lint": "eslint --color -c ../../../.eslintrc.js .",
98
"test:env:up": "npx polywrap infra up --modules=eth-ens-ipfs",
109
"test:env:down": "npx polywrap infra down --modules=eth-ens-ipfs",

packages/js/plugins/ethereum/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
"build"
1313
],
1414
"scripts": {
15-
"build": "rimraf ./build && yarn codegen && yarn build:patch && tsc --project tsconfig.build.json",
16-
"build:patch": "node ../../../../dependencies/node_modules/polywrap/bin/polywrap build || echo '`polywrap build` failed - see PR #1385 for details'",
15+
"build": "rimraf ./build && yarn codegen && tsc --project tsconfig.build.json",
1716
"codegen": "node ../../../../dependencies/node_modules/polywrap/bin/polywrap codegen",
1817
"lint": "eslint --color -c ../../../../.eslintrc.js src/",
1918
"test": "jest --passWithNoTests --runInBand --verbose",

packages/js/plugins/file-system/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
"build"
1313
],
1414
"scripts": {
15-
"build": "rimraf ./build && yarn codegen && yarn build:patch && tsc --project tsconfig.build.json",
16-
"build:patch": "node ../../../../dependencies/node_modules/polywrap/bin/polywrap build || echo '`polywrap build` failed - see PR #1385 for details'",
15+
"build": "rimraf ./build && yarn codegen && tsc --project tsconfig.build.json",
1716
"codegen": "node ../../../../dependencies/node_modules/polywrap/bin/polywrap codegen",
1817
"lint": "eslint --color -c ../../../../.eslintrc.js src/",
1918
"test": "jest --passWithNoTests --runInBand --verbose",

packages/js/plugins/http/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
"build"
1313
],
1414
"scripts": {
15-
"build": "rimraf ./build && yarn codegen && yarn build:patch && tsc --project tsconfig.build.json",
16-
"build:patch": "node ../../../../dependencies/node_modules/polywrap/bin/polywrap build || echo '`polywrap build` failed - see PR #1385 for details'",
15+
"build": "rimraf ./build && yarn codegen && tsc --project tsconfig.build.json",
1716
"codegen": "node ../../../../dependencies/node_modules/polywrap/bin/polywrap codegen",
1817
"lint": "eslint --color -c ../../../../.eslintrc.js src/",
1918
"test": "jest --passWithNoTests --runInBand --verbose",

packages/js/plugins/ipfs/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
"build"
1313
],
1414
"scripts": {
15-
"build": "rimraf ./build && yarn codegen && yarn build:patch && tsc --project tsconfig.build.json",
16-
"build:patch": "node ../../../../dependencies/node_modules/polywrap/bin/polywrap build || echo '`polywrap build` failed - see PR #1385 for details'",
15+
"build": "rimraf ./build && yarn codegen && tsc --project tsconfig.build.json",
1716
"codegen": "node ../../../../dependencies/node_modules/polywrap/bin/polywrap codegen",
1817
"lint": "eslint --color -c ../../../../.eslintrc.js src/",
1918
"test": "jest --passWithNoTests --runInBand --verbose",

packages/js/plugins/uri-resolvers/ens-resolver/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
"build"
1313
],
1414
"scripts": {
15-
"build": "rimraf ./build && yarn codegen && yarn build:patch && tsc --project tsconfig.build.json",
16-
"build:patch": "node ../../../../../dependencies/node_modules/polywrap/bin/polywrap build || echo '`polywrap build` failed - see PR #1385 for details'",
15+
"build": "rimraf ./build && yarn codegen && tsc --project tsconfig.build.json",
1716
"codegen": "node ../../../../../dependencies/node_modules/polywrap/bin/polywrap codegen",
1817
"lint": "eslint --color -c ../../../../../.eslintrc.js src/",
1918
"test": "jest --passWithNoTests --runInBand --verbose",

packages/js/plugins/uri-resolvers/file-system-resolver/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
"build"
1313
],
1414
"scripts": {
15-
"build": "rimraf ./build && yarn codegen && yarn build:patch && tsc --project tsconfig.build.json",
16-
"build:patch": "node ../../../../../dependencies/node_modules/polywrap/bin/polywrap build || echo '`polywrap build` failed - see PR #1385 for details'",
15+
"build": "rimraf ./build && yarn codegen && tsc --project tsconfig.build.json",
1716
"codegen": "node ../../../../../dependencies/node_modules/polywrap/bin/polywrap codegen",
1817
"lint": "eslint --color -c ../../../../../.eslintrc.js src/",
1918
"test": "jest --passWithNoTests --runInBand --verbose",

packages/js/plugins/uri-resolvers/http-resolver/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
"build"
1313
],
1414
"scripts": {
15-
"build": "rimraf ./build && yarn codegen && yarn build:patch && tsc --project tsconfig.build.json",
16-
"build:patch": "node ../../../../../dependencies/node_modules/polywrap/bin/polywrap build || echo '`polywrap build` failed - see PR #1385 for details'",
15+
"build": "rimraf ./build && yarn codegen && tsc --project tsconfig.build.json",
1716
"codegen": "node ../../../../../dependencies/node_modules/polywrap/bin/polywrap codegen",
1817
"codegen:patch": "node ../../../../cli/bin/polywrap plugin codegen && rimraf ./src/wrap",
1918
"lint": "eslint --color -c ../../../../../.eslintrc.js src/",

0 commit comments

Comments
 (0)