Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cd-javascript.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
echo $(npm whoami --registry https://registry.npmjs.org/)

- name: Install JS dependencies
run: yarn install --nonInteractive --frozen-lockfile
run: (yarn install --nonInteractive --frozen-lockfile || yarn install --nonInteractive --frozen-lockfile)

- name: Build JS packages
run: yarn build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-javascript.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
${{ runner.os }}-yarn-

- name: Install dependencies
run: yarn install --nonInteractive --frozen-lockfile --prefer-offline
run: (yarn install --nonInteractive --frozen-lockfile --prefer-offline || yarn install --nonInteractive --frozen-lockfile --prefer-offline)

- name: Lint
run: yarn run lint:ci
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
${{ runner.os }}-yarn-

- name: Install dependencies
run: yarn install --nonInteractive --frozen-lockfile --prefer-offline
run: (yarn install --nonInteractive --frozen-lockfile --prefer-offline || yarn install --nonInteractive --frozen-lockfile --prefer-offline)

- name: Build
run: yarn build
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
${{ runner.os }}-yarn-

- name: Install dependencies
run: yarn install --nonInteractive --frozen-lockfile --prefer-offline
run: (yarn install --nonInteractive --frozen-lockfile --prefer-offline || yarn install --nonInteractive --frozen-lockfile --prefer-offline)

- name: Build
run: yarn build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-wrap-test-harness.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
${{ runner.os }}-yarn-

- name: Install dependencies
run: yarn install --nonInteractive --frozen-lockfile --prefer-offline
run: (yarn install --nonInteractive --frozen-lockfile --prefer-offline || yarn install --nonInteractive --frozen-lockfile --prefer-offline)
working-directory: ./toolchain

- name: Build toolchain
Expand Down
9 changes: 1 addition & 8 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
{
"npmClient": "yarn",
"useWorkspaces": true,
"version": "independent",
"command": {
"publish": {
"ignoreChanges": [
"templates-*"
]
}
}
"version": "independent"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
]
},
"scripts": {
"reset": "yarn clean && yarn && yarn build",
"reset": "yarn clean && (yarn || yarn || yarn) && yarn build",
"clean": "npx rimraf ./**/node_modules ./**/yarn.lock ./**/build ./**/coverage ./**/.polywrap",
"install:test-wrappers": "lerna run generate:wrappers --scope @polywrap/test-cases",
"build": "yarn build:core && yarn build:config && yarn build:core:client && yarn build:client && yarn install:test-wrappers",
Expand Down
2 changes: 1 addition & 1 deletion packages/asyncify/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polywrap/asyncify-js",
"description": "Async Wasm Imports Support Using Asyncify",
"version": "0.10.0",
"version": "0.10.1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
10 changes: 5 additions & 5 deletions packages/client-config-builder/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polywrap/client-config-builder-js",
"description": "Polywrap JavaScript Client configuration",
"version": "0.10.0",
"version": "0.10.1",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -24,15 +24,15 @@
},
"dependencies": {
"@polywrap/concurrent-plugin-js": "~0.10.0",
"@polywrap/core-js": "0.10.0",
"@polywrap/core-js": "0.10.1",
"@polywrap/ethereum-provider-js": "npm:@polywrap/ethereum-provider-js@~0.3.1",
"@polywrap/ethereum-provider-js-v1": "npm:@polywrap/ethereum-provider-js@~0.2.4",
"@polywrap/file-system-plugin-js": "~0.10.0",
"@polywrap/http-plugin-js": "~0.10.0",
"@polywrap/logger-plugin-js": "~0.10.1",
"@polywrap/uri-resolver-extensions-js": "0.10.0",
"@polywrap/uri-resolvers-js": "0.10.0",
"@polywrap/wasm-js": "0.10.0",
"@polywrap/uri-resolver-extensions-js": "0.10.1",
"@polywrap/uri-resolvers-js": "0.10.1",
"@polywrap/wasm-js": "0.10.1",
"base64-to-uint8array": "1.0.0"
},
"devDependencies": {
Expand Down
28 changes: 14 additions & 14 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polywrap/client-js",
"description": "Polywrap JavaScript Client",
"version": "0.10.0",
"version": "0.10.1",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -23,27 +23,27 @@
"build:readme": "yarn doc-snippets combine"
},
"dependencies": {
"@polywrap/client-config-builder-js": "0.10.0",
"@polywrap/core-client-js": "0.10.0",
"@polywrap/core-js": "0.10.0",
"@polywrap/msgpack-js": "0.10.0",
"@polywrap/plugin-js": "0.10.0",
"@polywrap/result": "0.10.0",
"@polywrap/tracing-js": "0.10.0",
"@polywrap/uri-resolver-extensions-js": "0.10.0",
"@polywrap/uri-resolvers-js": "0.10.0",
"@polywrap/wrap-manifest-types-js": "0.10.0"
"@polywrap/client-config-builder-js": "0.10.1",
"@polywrap/core-client-js": "0.10.1",
"@polywrap/core-js": "0.10.1",
"@polywrap/msgpack-js": "0.10.1",
"@polywrap/plugin-js": "0.10.1",
"@polywrap/result": "0.10.1",
"@polywrap/tracing-js": "0.10.1",
"@polywrap/uri-resolver-extensions-js": "0.10.1",
"@polywrap/uri-resolvers-js": "0.10.1",
"@polywrap/wrap-manifest-types-js": "0.10.1"
},
"devDependencies": {
"@polywrap/cli-js": "0.10.0",
"@polywrap/test-cases": "0.10.0",
"@polywrap/cli-js": "~0.10.0",
"@polywrap/test-cases": "0.10.1",
"@types/jest": "29.5.0",
"@types/prettier": "2.6.0",
"@types/uuid": "8.3.0",
"bignumber.js": "9.0.2",
"doc-snippets": "~1.0.0",
"jest": "29.5.0",
"polywrap": "0.10.0",
"polywrap": "~0.10.0",
"rimraf": "3.0.2",
"ts-jest": "29.1.0",
"ts-loader": "8.0.17",
Expand Down
16 changes: 8 additions & 8 deletions packages/core-client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polywrap/core-client-js",
"description": "Polywrap JavaScript Core Client",
"version": "0.10.0",
"version": "0.10.1",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -21,15 +21,15 @@
"build:readme": "yarn doc-snippets combine"
},
"dependencies": {
"@polywrap/core-js": "0.10.0",
"@polywrap/msgpack-js": "0.10.0",
"@polywrap/result": "0.10.0",
"@polywrap/tracing-js": "0.10.0",
"@polywrap/wrap-manifest-types-js": "0.10.0"
"@polywrap/core-js": "0.10.1",
"@polywrap/msgpack-js": "0.10.1",
"@polywrap/result": "0.10.1",
"@polywrap/tracing-js": "0.10.1",
"@polywrap/wrap-manifest-types-js": "0.10.1"
},
"devDependencies": {
"@polywrap/test-cases": "0.10.0",
"@polywrap/uri-resolvers-js": "0.10.0",
"@polywrap/test-cases": "0.10.1",
"@polywrap/uri-resolvers-js": "0.10.1",
"@types/jest": "29.5.0",
"@types/uuid": "8.3.0",
"doc-snippets": "~1.0.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polywrap/core-js",
"description": "Polywrap JavaScript Core",
"version": "0.10.0",
"version": "0.10.1",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -23,9 +23,9 @@
"build:readme": "yarn build:readme:subsections && yarn build:readme:final"
},
"dependencies": {
"@polywrap/result": "0.10.0",
"@polywrap/tracing-js": "0.10.0",
"@polywrap/wrap-manifest-types-js": "0.10.0"
"@polywrap/result": "0.10.1",
"@polywrap/tracing-js": "0.10.1",
"@polywrap/wrap-manifest-types-js": "0.10.1"
},
"devDependencies": {
"@types/jest": "29.5.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/manifests/wrap/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polywrap/wrap-manifest-types-js",
"description": "WRAP Manifest TypeScript Typings",
"version": "0.10.0",
"version": "0.10.1",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -16,13 +16,13 @@
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "9.0.9",
"@polywrap/msgpack-js": "0.10.1",
"jsonschema": "1.4.0",
"semver": "7.5.0"
},
"devDependencies": {
"@polywrap/msgpack-js": "0.10.0",
"@polywrap/os-js": "0.10.0",
"@polywrap/wrap-manifest-schemas": "0.9.3",
"@polywrap/os-js": "~0.10.0",
"@polywrap/wrap-manifest-schemas": "0.9.7",
"@types/jest": "29.5.0",
"@types/mustache": "4.0.1",
"@types/prettier": "2.6.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/msgpack/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polywrap/msgpack-js",
"description": "WRAP MsgPack Encoding",
"version": "0.10.0",
"version": "0.10.1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
12 changes: 6 additions & 6 deletions packages/plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polywrap/plugin-js",
"description": "Polywrap plugin core package for plugin wrappers",
"version": "0.10.0",
"version": "0.10.1",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -18,11 +18,11 @@
"test:watch": "yarn test -- --watch"
},
"dependencies": {
"@polywrap/core-js": "0.10.0",
"@polywrap/msgpack-js": "0.10.0",
"@polywrap/result": "0.10.0",
"@polywrap/tracing-js": "0.10.0",
"@polywrap/wrap-manifest-types-js": "0.10.0"
"@polywrap/core-js": "0.10.1",
"@polywrap/msgpack-js": "0.10.1",
"@polywrap/result": "0.10.1",
"@polywrap/tracing-js": "0.10.1",
"@polywrap/wrap-manifest-types-js": "0.10.1"
},
"peerDependencies": {
"@polywrap/core-js": "0.10.x"
Expand Down
2 changes: 1 addition & 1 deletion packages/result/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polywrap/result",
"description": "Result helpers",
"version": "0.10.0",
"version": "0.10.1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/test-cases/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polywrap/test-cases",
"description": "Reusable Polywrap Test Cases",
"version": "0.10.0",
"version": "0.10.1",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -16,7 +16,7 @@
"generate:wrappers": "ts-node -e \"import { fetchWrappers } from './'; (async () => await fetchWrappers())()\""
},
"dependencies": {
"@polywrap/os-js": "0.10.0"
"@polywrap/os-js": "~0.10.0"
},
"devDependencies": {
"@types/adm-zip": "0.5.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/tracing/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polywrap/tracing-js",
"description": "Polywrap Core Tracing",
"version": "0.10.0",
"version": "0.10.1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
1 change: 0 additions & 1 deletion packages/uri-resolver-extensions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,5 +240,4 @@ nvm use && yarn install && yarn build

```bash
yarn test
``
```
20 changes: 10 additions & 10 deletions packages/uri-resolver-extensions/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polywrap/uri-resolver-extensions-js",
"description": "Polywrap URI resolver extensions",
"version": "0.10.0",
"version": "0.10.1",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -22,17 +22,17 @@
"build:readme": "yarn doc-snippets combine"
},
"dependencies": {
"@polywrap/core-js": "0.10.0",
"@polywrap/result": "0.10.0",
"@polywrap/uri-resolvers-js": "0.10.0",
"@polywrap/wasm-js": "0.10.0",
"@polywrap/wrap-manifest-types-js": "0.10.0"
"@polywrap/core-js": "0.10.1",
"@polywrap/result": "0.10.1",
"@polywrap/uri-resolvers-js": "0.10.1",
"@polywrap/wasm-js": "0.10.1",
"@polywrap/wrap-manifest-types-js": "0.10.1"
},
"devDependencies": {
"@polywrap/cli-js": "0.10.0",
"@polywrap/core-client-js": "0.10.0",
"@polywrap/plugin-js": "0.10.0",
"@polywrap/test-cases": "0.10.0",
"@polywrap/cli-js": "~0.10.0",
"@polywrap/core-client-js": "0.10.1",
"@polywrap/plugin-js": "0.10.1",
"@polywrap/test-cases": "0.10.1",
"@types/jest": "29.5.0",
"base64-to-uint8array": "1.0.0",
"copyfiles": "2.4.1",
Expand Down
14 changes: 7 additions & 7 deletions packages/uri-resolvers/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polywrap/uri-resolvers-js",
"description": "Polywrap URI resolvers",
"version": "0.10.0",
"version": "0.10.1",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -24,14 +24,14 @@
"build:readme": "yarn build:readme:subsections && yarn build:readme:final"
},
"dependencies": {
"@polywrap/core-js": "0.10.0",
"@polywrap/result": "0.10.0",
"@polywrap/wrap-manifest-types-js": "0.10.0"
"@polywrap/core-js": "0.10.1",
"@polywrap/result": "0.10.1",
"@polywrap/wrap-manifest-types-js": "0.10.1"
},
"devDependencies": {
"@polywrap/client-config-builder-js": "0.10.0",
"@polywrap/core-client-js": "0.10.0",
"@polywrap/plugin-js": "0.10.0",
"@polywrap/client-config-builder-js": "0.10.1",
"@polywrap/core-client-js": "0.10.1",
"@polywrap/plugin-js": "0.10.1",
"@types/jest": "29.5.0",
"doc-snippets": "~1.0.0",
"jest": "29.5.0",
Expand Down
Loading