@wordpress/shortcode 4.36.1-next.8fd3f8831.0 → 4.37.1-next.06ee73755.0
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/LICENSE.md +1 -1
- package/build/index.cjs +1 -1
- package/build-module/{index.js → index.mjs} +2 -2
- package/build-module/types.mjs +1 -0
- package/package.json +4 -5
- package/build-module/types.js +0 -1
- /package/build-module/{index.js.map → index.mjs.map} +0 -0
- /package/build-module/{types.js.map → types.mjs.map} +0 -0
package/LICENSE.md
CHANGED
package/build/index.cjs
CHANGED
|
@@ -40,7 +40,7 @@ __export(index_exports, {
|
|
|
40
40
|
string: () => string
|
|
41
41
|
});
|
|
42
42
|
module.exports = __toCommonJS(index_exports);
|
|
43
|
-
var import_memize = __toESM(require("memize")
|
|
43
|
+
var import_memize = __toESM(require("memize"));
|
|
44
44
|
__reExport(index_exports, require("./types.cjs"), module.exports);
|
|
45
45
|
function next(tag, text, index = 0) {
|
|
46
46
|
const re = regexp(tag);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// packages/shortcode/src/index.js
|
|
2
2
|
import memize from "memize";
|
|
3
|
-
export * from "./types.
|
|
3
|
+
export * from "./types.mjs";
|
|
4
4
|
function next(tag, text, index = 0) {
|
|
5
5
|
const re = regexp(tag);
|
|
6
6
|
re.lastIndex = index;
|
|
@@ -184,4 +184,4 @@ export {
|
|
|
184
184
|
replace,
|
|
185
185
|
string
|
|
186
186
|
};
|
|
187
|
-
//# sourceMappingURL=index.
|
|
187
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=types.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/shortcode",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.37.1-next.06ee73755.0",
|
|
4
4
|
"description": "Shortcode module for WordPress.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -29,13 +29,12 @@
|
|
|
29
29
|
"build-types",
|
|
30
30
|
"*.md"
|
|
31
31
|
],
|
|
32
|
-
"type": "module",
|
|
33
32
|
"main": "build/index.cjs",
|
|
34
|
-
"module": "build-module/index.
|
|
33
|
+
"module": "build-module/index.mjs",
|
|
35
34
|
"exports": {
|
|
36
35
|
".": {
|
|
37
36
|
"types": "./build-types/index.d.ts",
|
|
38
|
-
"import": "./build-module/index.
|
|
37
|
+
"import": "./build-module/index.mjs",
|
|
39
38
|
"require": "./build/index.cjs"
|
|
40
39
|
},
|
|
41
40
|
"./package.json": "./package.json"
|
|
@@ -50,5 +49,5 @@
|
|
|
50
49
|
"publishConfig": {
|
|
51
50
|
"access": "public"
|
|
52
51
|
},
|
|
53
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "fd315436f44683a993d5f053789b5279d95b2872"
|
|
54
53
|
}
|
package/build-module/types.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=types.js.map
|
|
File without changes
|
|
File without changes
|