@docusaurus/utils-common 2.0.0-beta.14 → 2.0.0-beta.15

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/lib/index.d.ts CHANGED
@@ -4,6 +4,7 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
+ export declare const blogPostContainerID = "post-content";
7
8
  export { default as applyTrailingSlash } from './applyTrailingSlash';
8
9
  export type { ApplyTrailingSlashParams } from './applyTrailingSlash';
9
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAC,OAAO,IAAI,kBAAkB,EAAC,MAAM,sBAAsB,CAAC;AACnE,YAAY,EAAC,wBAAwB,EAAC,MAAM,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,eAAO,MAAM,mBAAmB,iBAAiB,CAAC;AAClD,OAAO,EAAC,OAAO,IAAI,kBAAkB,EAAC,MAAM,sBAAsB,CAAC;AACnE,YAAY,EAAC,wBAAwB,EAAC,MAAM,sBAAsB,CAAC"}
package/lib/index.js CHANGED
@@ -9,7 +9,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
9
9
  return (mod && mod.__esModule) ? mod : { "default": mod };
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.applyTrailingSlash = void 0;
12
+ exports.applyTrailingSlash = exports.blogPostContainerID = void 0;
13
+ exports.blogPostContainerID = 'post-content';
13
14
  var applyTrailingSlash_1 = require("./applyTrailingSlash");
14
15
  Object.defineProperty(exports, "applyTrailingSlash", { enumerable: true, get: function () { return __importDefault(applyTrailingSlash_1).default; } });
15
16
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;;;;AAEH,2DAAmE;AAA3D,yIAAA,OAAO,OAAsB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;;;;AAEU,QAAA,mBAAmB,GAAG,cAAc,CAAC;AAClD,2DAAmE;AAA3D,yIAAA,OAAO,OAAsB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docusaurus/utils-common",
3
- "version": "2.0.0-beta.14",
3
+ "version": "2.0.0-beta.15",
4
4
  "description": "Common (Node/Browser) utility functions for Docusaurus packages.",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -21,10 +21,10 @@
21
21
  "tslib": "^2.3.1"
22
22
  },
23
23
  "devDependencies": {
24
- "@docusaurus/types": "2.0.0-beta.14"
24
+ "@docusaurus/types": "2.0.0-beta.15"
25
25
  },
26
26
  "engines": {
27
27
  "node": ">=14"
28
28
  },
29
- "gitHead": "c4824a8937d8f1aa0806667749cbc74058e2b294"
29
+ "gitHead": "9a8acb2a87250368427ad80258350d630e7ae2f5"
30
30
  }
package/src/index.ts CHANGED
@@ -5,5 +5,6 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
7
 
8
+ export const blogPostContainerID = 'post-content';
8
9
  export {default as applyTrailingSlash} from './applyTrailingSlash';
9
10
  export type {ApplyTrailingSlashParams} from './applyTrailingSlash';