File tree Expand file tree Collapse file tree
integration-tests/react-app Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 },
1313 "devDependencies" : {
1414 "@polywrap/client-js" : " ../packages/client" ,
15- "@polywrap/file-system-plugin-js" : " 0.12.0-pre.0 " ,
16- "@polywrap/http-plugin-js" : " 0.12.0-pre.0 " ,
17- "@polywrap/logger-plugin-js" : " 0.12.0-pre.0 " ,
15+ "@polywrap/file-system-plugin-js" : " 0.12.0" ,
16+ "@polywrap/http-plugin-js" : " 0.12.0" ,
17+ "@polywrap/logger-plugin-js" : " 0.12.0" ,
1818 "@polywrap/ethereum-wallet-js" : " 0.1.0" ,
1919 "ts-node" : " 10.9.1" ,
2020 "typescript" : " 4.9.5"
Original file line number Diff line number Diff line change 33 "version" : " 0.1.0" ,
44 "private" : true ,
55 "dependencies" : {
6- "@polywrap/client-js" : " ~0.12.0-pre.1 " ,
7- "@polywrap/sys-config-bundle-js" : " ~0.12.0-pre.1 " ,
6+ "@polywrap/client-js" : " ~0.12.0" ,
7+ "@polywrap/sys-config-bundle-js" : " ~0.12.0" ,
88 "@types/react" : " ^18.2.13" ,
99 "@types/react-dom" : " ^18.2.6" ,
1010 "react" : " ^18.2.0" ,
Original file line number Diff line number Diff line change 1818 "lint" : " eslint --color -c ../../../.eslintrc.js src/"
1919 },
2020 "dependencies" : {
21- "@polywrap/concurrent-plugin-js" : " ~0.12.0-pre.0 " ,
21+ "@polywrap/concurrent-plugin-js" : " ~0.12.0" ,
2222 "@polywrap/config-bundle-types-js" : " 0.12.0" ,
23- "@polywrap/datetime-plugin-js" : " ~0.12.0-pre.0 " ,
24- "@polywrap/file-system-plugin-js" : " ~0.12.0-pre.0 " ,
25- "@polywrap/http-plugin-js" : " ~0.12.0-pre.0 " ,
26- "@polywrap/logger-plugin-js" : " ~0.12.0-pre.0 " ,
23+ "@polywrap/datetime-plugin-js" : " ~0.12.0" ,
24+ "@polywrap/file-system-plugin-js" : " ~0.12.0" ,
25+ "@polywrap/http-plugin-js" : " ~0.12.0" ,
26+ "@polywrap/logger-plugin-js" : " ~0.12.0" ,
2727 "@polywrap/uri-resolver-extensions-js" : " 0.12.0" ,
2828 "base64-to-uint8array" : " 1.0.0"
2929 },
3030 "peerDependencies" : {
31- "@polywrap/msgpack-js" : " 0.12.0-pre.1 "
31+ "@polywrap/msgpack-js" : " 0.12.x "
3232 },
3333 "devDependencies" : {
3434 "@polywrap/wrap-manifest-types-js" : " 0.12.0" ,
Original file line number Diff line number Diff line change 1717 "dependencies" : {
1818 "@polywrap/msgpack-js" : " 0.12.0" ,
1919 "ajv" : " 8.12.0" ,
20- "semver" : " 7.5.0 "
20+ "semver" : " ~ 7.5.4 "
2121 },
2222 "devDependencies" : {
2323 "@apidevtools/json-schema-ref-parser" : " 9.0.9" ,
24- "@polywrap/os-js" : " ~0.10 .0" ,
24+ "@polywrap/os-js" : " ~0.11 .0" ,
2525 "@polywrap/wrap-manifest-schemas" : " 0.9.7" ,
2626 "@types/jest" : " 29.5.0" ,
2727 "@types/mustache" : " 4.0.1" ,
Original file line number Diff line number Diff line change 2525 "@polywrap/wrap-manifest-types-js" : " 0.12.0"
2626 },
2727 "peerDependencies" : {
28- "@polywrap/core-js" : " 0.11 .x"
28+ "@polywrap/core-js" : " 0.12 .x"
2929 },
3030 "devDependencies" : {
3131 "@types/jest" : " 29.5.0" ,
Original file line number Diff line number Diff line change 1616 "generate:wraps" : " ts-node -e \" import { fetchWrappers } from './'; (async () => await fetchWrappers())()\" "
1717 },
1818 "dependencies" : {
19- "@polywrap/os-js" : " ~0.10 .0"
19+ "@polywrap/os-js" : " ~0.11 .0"
2020 },
2121 "devDependencies" : {
2222 "@types/adm-zip" : " 0.5.0" ,
Original file line number Diff line number Diff line change 2929 "@polywrap/wrap-manifest-types-js" : " 0.12.0"
3030 },
3131 "devDependencies" : {
32- "@polywrap/cli-js" : " ~0.10 .0" ,
32+ "@polywrap/cli-js" : " ~0.11 .0" ,
3333 "@polywrap/core-client-js" : " 0.12.0" ,
3434 "@polywrap/plugin-js" : " 0.12.0" ,
3535 "@polywrap/test-cases" : " 0.12.0" ,
Original file line number Diff line number Diff line change 11#import { Module } into TestResolver from "wrap://package/test-resolver"
2+ #import * from "wrapscan.io/polywrap/uri-resolver@1.0"
23
34type Env {}
4-
5- # NOTE: below is a hack, replace import from the following URI once CLI & Client are out of -pre release
6- # "wrapscan.io/polywrap/uri-resolver@1.0"
7-
8- type Module {
9- tryResolveUri (
10- authority : String !
11- path : String !
12- ): MaybeUriOrManifest @env (required : false )
13-
14- getFile (
15- path : String !
16- ): Bytes @env (required : false )
17- }
18-
19- type MaybeUriOrManifest {
20- uri : String
21- manifest : Bytes
22- }
Original file line number Diff line number Diff line change 1- type Env {}
2-
3- # NOTE: below is a hack, replace import from the following URI once CLI & Client are out of -pre release
4- # "wrapscan.io/polywrap/uri-resolver@1.0"
5-
6- type Module {
7- tryResolveUri (
8- authority : String !
9- path : String !
10- ): MaybeUriOrManifest @env (required : false )
1+ #import * from "wrapscan.io/polywrap/uri-resolver@1.0"
112
12- getFile (
13- path : String !
14- ): Bytes @env (required : false )
15- }
16-
17- type MaybeUriOrManifest {
18- uri : String
19- manifest : Bytes
20- }
3+ type Env {}
Original file line number Diff line number Diff line change 2626 "@polywrap/wrap-manifest-types-js" : " 0.12.0"
2727 },
2828 "peerDependencies" : {
29- "@polywrap/core-js" : " 0.11 .x"
29+ "@polywrap/core-js" : " 0.12 .x"
3030 },
3131 "devDependencies" : {
3232 "@polywrap/test-cases" : " 0.12.0" ,
You can’t perform that action at this time.
0 commit comments