@triplit/react 0.0.33 → 0.0.35

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/package.json +5 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @triplit/react
2
2
 
3
+ ## 0.0.32
4
+
5
+ ### Patch Changes
6
+
7
+ - ba38c67: - fixup builds and typescript support
8
+ - improve support for next.js
9
+ - Updated dependencies [ba38c67]
10
+ - @triplit/client@0.0.32
11
+
12
+ ## 0.0.31
13
+
14
+ ### Patch Changes
15
+
16
+ - @triplit/client@0.0.31
17
+
3
18
  ## 0.0.30
4
19
 
5
20
  ### Patch Changes
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.33",
4
+ "version": "0.0.35",
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.33"
20
+ "@triplit/client": "^0.0.35"
19
21
  },
20
22
  "devDependencies": {
21
23
  "@parcel/config-default": "^2.9.3",