@everipedia/iq-utils 0.3.0 → 0.3.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  ## 0.2.8
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 3add847: Add export for wiki validation
8
+
3
9
  ## 0.3.0
4
10
 
5
11
  ### Minor Changes
@@ -1,4 +1,5 @@
1
- export * from './lib/wikiScore';
2
- export * from './lib/isDeepEqual';
3
- export * from './types/wiki';
4
- export * from './types/wikiBuilder';
1
+ export * from "./lib/wikiScore";
2
+ export * from "./lib/isDeepEqual";
3
+ export * from "./lib/checkWikiValidity";
4
+ export * from "./types/wiki";
5
+ export * from "./types/wikiBuilder";
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./lib/wikiScore"), exports);
18
18
  __exportStar(require("./lib/isDeepEqual"), exports);
19
+ __exportStar(require("./lib/checkWikiValidity"), exports);
19
20
  __exportStar(require("./types/wiki"), exports);
20
21
  __exportStar(require("./types/wikiBuilder"), exports);
21
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLGtEQUFnQztBQUNoQyxvREFBa0M7QUFDbEMsK0NBQTZCO0FBQzdCLHNEQUFvQyJ9
22
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLGtEQUFnQztBQUNoQyxvREFBa0M7QUFDbEMsMERBQXdDO0FBQ3hDLCtDQUE2QjtBQUM3QixzREFBb0MifQ==
@@ -1,4 +1,5 @@
1
- export * from './lib/wikiScore';
2
- export * from './lib/isDeepEqual';
3
- export * from './types/wiki';
4
- export * from './types/wikiBuilder';
1
+ export * from "./lib/wikiScore";
2
+ export * from "./lib/isDeepEqual";
3
+ export * from "./lib/checkWikiValidity";
4
+ export * from "./types/wiki";
5
+ export * from "./types/wikiBuilder";
@@ -1,5 +1,6 @@
1
- export * from './lib/wikiScore';
2
- export * from './lib/isDeepEqual';
3
- export * from './types/wiki';
4
- export * from './types/wikiBuilder';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxpQkFBaUIsQ0FBQztBQUNoQyxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMscUJBQXFCLENBQUMifQ==
1
+ export * from "./lib/wikiScore";
2
+ export * from "./lib/isDeepEqual";
3
+ export * from "./lib/checkWikiValidity";
4
+ export * from "./types/wiki";
5
+ export * from "./types/wikiBuilder";
6
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxpQkFBaUIsQ0FBQztBQUNoQyxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxxQkFBcUIsQ0FBQyJ9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everipedia/iq-utils",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Common utility library for IQ projects",
5
5
  "main": "build/main/index.js",
6
6
  "typings": "build/main/index.d.ts",