@latticexyz/schema-type 2.0.0-alpha.87 → 2.0.0-alpha.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +7 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@latticexyz/schema-type",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "2.0.0-alpha.
|
|
4
|
+
"version": "2.0.0-alpha.89+53df4745",
|
|
5
5
|
"description": "SchemaType enum for various languages",
|
|
6
6
|
"main": "src/typescript/index.ts",
|
|
7
7
|
"source": "src/typescript/index.ts",
|
|
@@ -12,14 +12,13 @@
|
|
|
12
12
|
"directory": "packages/schema-type"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
|
-
"prepare": "
|
|
16
|
-
"test": "
|
|
15
|
+
"prepare": "pnpm build",
|
|
16
|
+
"test": "pnpm test:solidity && pnpm test:typescript",
|
|
17
17
|
"test:solidity": "forge test",
|
|
18
18
|
"test:typescript": "tsc --noEmit",
|
|
19
|
-
"build": "
|
|
20
|
-
"build:solidity": "rimraf out && forge build",
|
|
21
|
-
"build:typescript": "tsc",
|
|
22
|
-
"link": "yarn link",
|
|
19
|
+
"build": "pnpm build:solidity && pnpm build:typescript",
|
|
20
|
+
"build:solidity": "echo 'removing previous output' && rimraf out && echo 'build solidity' && forge build",
|
|
21
|
+
"build:typescript": "echo 'build typescript' && tsc",
|
|
23
22
|
"release": "npm publish --access=public"
|
|
24
23
|
},
|
|
25
24
|
"devDependencies": {
|
|
@@ -27,5 +26,5 @@
|
|
|
27
26
|
"forge-std": "https://github.com/foundry-rs/forge-std.git#b4f121555729b3afb3c5ffccb62ff4b6e2818fd3",
|
|
28
27
|
"rimraf": "^3.0.2"
|
|
29
28
|
},
|
|
30
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "53df4745449015c8b09e0a234fa6ba2dcba4577b"
|
|
31
30
|
}
|