@triplit/react 0.0.32 → 0.0.34
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +5 -3
package/package.json
CHANGED
@@ -1,13 +1,15 @@
|
|
1
1
|
{
|
2
2
|
"name": "@triplit/react",
|
3
3
|
"packageManager": "yarn@3.4.1",
|
4
|
-
"version": "0.0.
|
4
|
+
"version": "0.0.34",
|
5
5
|
"source": "src/index.ts",
|
6
6
|
"main": "dist/index.js",
|
7
7
|
"module": "dist/module.js",
|
8
8
|
"types": "dist/index.d.ts",
|
9
9
|
"scripts": {
|
10
|
-
"build": "parcel build . --no-cache",
|
10
|
+
"build": "yarn build:setup && parcel build . --no-cache && yarn build:cleanup",
|
11
|
+
"build:setup": "mv tsconfig.json tsconfig.tmp.json && mv tsconfig.build.json tsconfig.json",
|
12
|
+
"build:cleanup": "mv tsconfig.json tsconfig.build.json && mv tsconfig.tmp.json tsconfig.json",
|
11
13
|
"lint": "tsc",
|
12
14
|
"publish-pkg": "node ../../scripts/npm-check-version-and-publish.js"
|
13
15
|
},
|
@@ -15,7 +17,7 @@
|
|
15
17
|
"/dist"
|
16
18
|
],
|
17
19
|
"dependencies": {
|
18
|
-
"@triplit/client": "0.0.
|
20
|
+
"@triplit/client": "0.0.34"
|
19
21
|
},
|
20
22
|
"devDependencies": {
|
21
23
|
"@parcel/config-default": "^2.9.3",
|