@plasmicapp/react-web 0.2.208 → 0.2.209

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.
@@ -1,5 +1,4 @@
1
1
  {
2
- "type": "module",
3
2
  "exports": {
4
3
  "import": "./index.js",
5
4
  "require": "./index.cjs.js"
@@ -1,5 +1,4 @@
1
1
  {
2
- "type": "module",
3
2
  "exports": {
4
3
  "import": "./index.js",
5
4
  "require": "./index.cjs.js"
@@ -1,5 +1,4 @@
1
1
  {
2
- "type": "module",
3
2
  "exports": {
4
3
  "import": "./index.js",
5
4
  "require": "./index.cjs.js"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasmicapp/react-web",
3
- "version": "0.2.208",
3
+ "version": "0.2.209",
4
4
  "description": "plasmic library for rendering in the presentational style",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
@@ -22,24 +22,24 @@
22
22
  },
23
23
  "exports": {
24
24
  ".": {
25
+ "types": "./dist/index.d.ts",
25
26
  "import": "./dist/react-web.esm.js",
26
- "require": "./dist/index.cjs.js",
27
- "types": "./dist/index.d.ts"
27
+ "require": "./dist/index.cjs.js"
28
28
  },
29
29
  "./lib/host": {
30
+ "types": "./lib/host/index.d.ts",
30
31
  "import": "./lib/host/index.js",
31
- "require": "./lib/host/index.cjs.js",
32
- "types": "./lib/host/index.d.ts"
32
+ "require": "./lib/host/index.cjs.js"
33
33
  },
34
34
  "./lib/data-sources": {
35
+ "types": "./lib/data-sources/index.d.ts",
35
36
  "import": "./lib/data-sources/index.js",
36
- "require": "./lib/data-sources/index.cjs.js",
37
- "types": "./lib/data-sources/index.d.ts"
37
+ "require": "./lib/data-sources/index.cjs.js"
38
38
  },
39
39
  "./lib/query": {
40
+ "types": "./lib/query/index.d.ts",
40
41
  "import": "./lib/query/index.js",
41
- "require": "./lib/query/index.cjs.js",
42
- "types": "./lib/query/index.d.ts"
42
+ "require": "./lib/query/index.cjs.js"
43
43
  },
44
44
  "./lib/plasmic.css": "./lib/plasmic.css",
45
45
  "./skinny": {
@@ -56,6 +56,7 @@
56
56
  ],
57
57
  "scripts": {
58
58
  "build": "rollup -c && mkdir -p lib && cp src/styles/plasmic.css lib/",
59
+ "clean": "rm -rf dist/ skinny/dist/ lib/host/*js lib/host/*.ts lib/host/*.map lib/data-sources/*js lib/data-sources/*.ts lib/data-sources/*.map lib/query/*js lib/query/*.ts lib/query/*.map",
59
60
  "start": "tsdx watch",
60
61
  "test": "yarn --cwd=../.. test",
61
62
  "lint": "tsdx lint",
@@ -142,5 +143,5 @@
142
143
  "react": ">=16.8.0",
143
144
  "react-dom": ">=16.8.0"
144
145
  },
145
- "gitHead": "7922e287e1a83e1ae41044981b7661c787e7b55a"
146
+ "gitHead": "807918caa253def6a79afdc3439b6d0a924c119e"
146
147
  }