@rimbu/base 0.7.0 → 0.8.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.
@@ -1,5 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RimbuError = exports.Entry = exports.Arr = void 0;
3
4
  var tslib_1 = require("tslib");
5
+ var Arr = (0, tslib_1.__importStar)(require("./arr"));
6
+ exports.Arr = Arr;
7
+ var Entry = (0, tslib_1.__importStar)(require("./entry"));
8
+ exports.Entry = Entry;
9
+ var RimbuError = (0, tslib_1.__importStar)(require("./rimbu-error"));
10
+ exports.RimbuError = RimbuError;
4
11
  (0, tslib_1.__exportStar)(require("./internal"), exports);
5
12
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AAAA,0DAA2B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;AAAA,sDAA6B;AAIpB,kBAAG;AAHZ,0DAAiC;AAGnB,sBAAK;AAFnB,qEAA4C;AAEvB,gCAAU;AAE/B,0DAA2B"}
@@ -1,9 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RimbuError = exports.Entry = exports.Arr = void 0;
4
3
  var tslib_1 = require("tslib");
5
- exports.Arr = (0, tslib_1.__importStar)(require("./arr"));
6
- exports.Entry = (0, tslib_1.__importStar)(require("./entry"));
7
- exports.RimbuError = (0, tslib_1.__importStar)(require("./rimbu-error"));
8
4
  (0, tslib_1.__exportStar)(require("./token"), exports);
9
5
  //# sourceMappingURL=internal.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"internal.js","sourceRoot":"","sources":["../../src/internal.ts"],"names":[],"mappings":";;;;AAAA,0DAA6B;AAC7B,8DAAiC;AACjC,yEAA4C;AAC5C,uDAAwB"}
1
+ {"version":3,"file":"internal.js","sourceRoot":"","sources":["../../src/internal.ts"],"names":[],"mappings":";;;AAAA,uDAAwB"}
@@ -1,2 +1,6 @@
1
+ import * as Arr from './arr';
2
+ import * as Entry from './entry';
3
+ import * as RimbuError from './rimbu-error';
4
+ export { Arr, Entry, RimbuError };
1
5
  export * from './internal';
2
6
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,GAAG,MAAM,OAAO,CAAC;AAC7B,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,UAAU,MAAM,eAAe,CAAC;AAE5C,OAAO,EAAE,GAAG,EAAE,KAAK,EAAE,UAAU,EAAE,CAAC;AAElC,cAAc,YAAY,CAAC"}
@@ -1,5 +1,2 @@
1
- export * as Arr from './arr';
2
- export * as Entry from './entry';
3
- export * as RimbuError from './rimbu-error';
4
1
  export * from './token';
5
2
  //# sourceMappingURL=internal.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"internal.js","sourceRoot":"","sources":["../../src/internal.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,GAAG,MAAM,OAAO,CAAC;AAC7B,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,UAAU,MAAM,eAAe,CAAC;AAC5C,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"internal.js","sourceRoot":"","sources":["../../src/internal.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC"}
@@ -1 +1,5 @@
1
+ import * as Arr from './arr';
2
+ import * as Entry from './entry';
3
+ import * as RimbuError from './rimbu-error';
4
+ export { Arr, Entry, RimbuError };
1
5
  export * from './internal';
@@ -1,4 +1 @@
1
- export * as Arr from './arr';
2
- export * as Entry from './entry';
3
- export * as RimbuError from './rimbu-error';
4
1
  export * from './token';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rimbu/base",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "Utilities to implement Rimbu collections",
5
5
  "keywords": [
6
6
  "array",
@@ -36,14 +36,14 @@
36
36
  ],
37
37
  "scripts": {
38
38
  "build": "yarn clean && yarn bundle",
39
- "build:deno": "rimraf deno_dist ../../deno_dist/base && denoify && cp ../../config/mod_ts_template deno_dist/mod.ts && mv deno_dist ../../deno_dist/base",
39
+ "build:deno": "rimraf deno_dist ../../deno_dist/base && denoify && mv deno_dist ../../deno_dist/base",
40
40
  "bundle": "yarn bundle:main && yarn bundle:module && yarn bundle:types",
41
41
  "bundle:main": "tsc --p tsconfig.main.json",
42
42
  "bundle:module": "tsc --p tsconfig.module.json",
43
43
  "bundle:types": "tsc --p tsconfig.types.json",
44
44
  "clean": "rimraf dist",
45
45
  "format": "yarn format:base --write",
46
- "format:base": "prettier \"{!CHANGELOG.md}|**/*.{ts,tsx,js,json,md}\"",
46
+ "format:base": "prettier \"{!CHANGELOG.md}|**/**/*.{ts,tsx,js,json,md}\"",
47
47
  "format:check": "yarn format:base --check",
48
48
  "lint": "eslint src",
49
49
  "test": "jest",
@@ -51,14 +51,15 @@
51
51
  },
52
52
  "sideEffects": false,
53
53
  "dependencies": {
54
- "@rimbu/common": "^0.8.0",
54
+ "@rimbu/common": "^0.9.0",
55
55
  "tslib": "^2.3.1"
56
56
  },
57
57
  "publishConfig": {
58
58
  "access": "public"
59
59
  },
60
60
  "denoify": {
61
+ "index": "src/index.ts",
61
62
  "replacer": "../../config/denoify-rimbu-replacer.js"
62
63
  },
63
- "gitHead": "c321aa32b1c5fd8ca8b7fb1c26bd4f7bbf3ef70d"
64
+ "gitHead": "7c60bf40f3479524fa9d603a75b33f914d2feb28"
64
65
  }
package/src/index.ts CHANGED
@@ -1 +1,7 @@
1
+ import * as Arr from './arr';
2
+ import * as Entry from './entry';
3
+ import * as RimbuError from './rimbu-error';
4
+
5
+ export { Arr, Entry, RimbuError };
6
+
1
7
  export * from './internal';
package/src/internal.ts CHANGED
@@ -1,4 +1 @@
1
- export * as Arr from './arr';
2
- export * as Entry from './entry';
3
- export * as RimbuError from './rimbu-error';
4
1
  export * from './token';