payload-better-editor 1.0.0 → 1.0.1
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/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/package.json +8 -24
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "1.0.
|
|
1
|
+
export declare const VERSION = "1.0.1";
|
package/dist/version.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Single source of truth — re-exported from index.ts as `VERSION` and used
|
|
2
2
|
// by client components (e.g. the settings footer) without dragging the
|
|
3
3
|
// whole server entry into the client bundle.
|
|
4
|
-
export const VERSION = '1.0.
|
|
4
|
+
export const VERSION = '1.0.1';
|
|
5
5
|
|
|
6
6
|
//# sourceMappingURL=version.js.map
|
package/dist/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/version.ts"],"sourcesContent":["// Single source of truth — re-exported from index.ts as `VERSION` and used\n// by client components (e.g. the settings footer) without dragging the\n// whole server entry into the client bundle.\nexport const VERSION = '1.0.
|
|
1
|
+
{"version":3,"sources":["../src/version.ts"],"sourcesContent":["// Single source of truth — re-exported from index.ts as `VERSION` and used\n// by client components (e.g. the settings footer) without dragging the\n// whole server entry into the client bundle.\nexport const VERSION = '1.0.1'\n"],"names":["VERSION"],"mappings":"AAAA,2EAA2E;AAC3E,uEAAuE;AACvE,6CAA6C;AAC7C,OAAO,MAAMA,UAAU,QAAO"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "payload-better-editor",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Block editor plugin for Payload CMS that adds a side-by-side live-preview iframe and sidebar to the edit view.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "scorpio-99",
|
|
@@ -39,18 +39,16 @@
|
|
|
39
39
|
],
|
|
40
40
|
"exports": {
|
|
41
41
|
".": {
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"default": "./src/index.ts"
|
|
42
|
+
"types": "./dist/index.d.ts",
|
|
43
|
+
"default": "./dist/index.js"
|
|
45
44
|
},
|
|
46
45
|
"./client": {
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"default": "./src/client.ts"
|
|
46
|
+
"types": "./dist/client.d.ts",
|
|
47
|
+
"default": "./dist/client.js"
|
|
50
48
|
}
|
|
51
49
|
},
|
|
52
|
-
"main": "./
|
|
53
|
-
"types": "./
|
|
50
|
+
"main": "./dist/index.js",
|
|
51
|
+
"types": "./dist/index.d.ts",
|
|
54
52
|
"files": [
|
|
55
53
|
"dist"
|
|
56
54
|
],
|
|
@@ -98,20 +96,6 @@
|
|
|
98
96
|
},
|
|
99
97
|
"publishConfig": {
|
|
100
98
|
"access": "public",
|
|
101
|
-
"registry": "https://registry.npmjs.org/"
|
|
102
|
-
"exports": {
|
|
103
|
-
".": {
|
|
104
|
-
"import": "./dist/index.js",
|
|
105
|
-
"types": "./dist/index.d.ts",
|
|
106
|
-
"default": "./dist/index.js"
|
|
107
|
-
},
|
|
108
|
-
"./client": {
|
|
109
|
-
"import": "./dist/client.js",
|
|
110
|
-
"types": "./dist/client.d.ts",
|
|
111
|
-
"default": "./dist/client.js"
|
|
112
|
-
}
|
|
113
|
-
},
|
|
114
|
-
"main": "./dist/index.js",
|
|
115
|
-
"types": "./dist/index.d.ts"
|
|
99
|
+
"registry": "https://registry.npmjs.org/"
|
|
116
100
|
}
|
|
117
101
|
}
|