@jdsalasc/solvejs 1.0.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/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @jdsalasc/solvejs
2
+
3
+ Meta package that re-exports all SolveJS utility modules.
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("@jdsalasc/solvejs-date"), exports);
18
+ __exportStar(require("@jdsalasc/solvejs-string"), exports);
19
+ __exportStar(require("@jdsalasc/solvejs-list"), exports);
20
+ __exportStar(require("@jdsalasc/solvejs-regex"), exports);
21
+ __exportStar(require("@jdsalasc/solvejs-constants"), exports);
22
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC;AACvC,2DAAyC;AACzC,yDAAuC;AACvC,0DAAwC;AACxC,8DAA4C"}
@@ -0,0 +1,5 @@
1
+ export * from "@jdsalasc/solvejs-date";
2
+ export * from "@jdsalasc/solvejs-string";
3
+ export * from "@jdsalasc/solvejs-list";
4
+ export * from "@jdsalasc/solvejs-regex";
5
+ export * from "@jdsalasc/solvejs-constants";
@@ -0,0 +1,6 @@
1
+ export * from "@jdsalasc/solvejs-date";
2
+ export * from "@jdsalasc/solvejs-string";
3
+ export * from "@jdsalasc/solvejs-list";
4
+ export * from "@jdsalasc/solvejs-regex";
5
+ export * from "@jdsalasc/solvejs-constants";
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,6BAA6B,CAAC"}
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@jdsalasc/solvejs",
3
+ "version": "1.0.0",
4
+ "description": "Meta package for SolveJS utilities.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "sideEffects": false,
8
+ "main": "./dist/cjs/index.cjs",
9
+ "module": "./dist/esm/index.js",
10
+ "types": "./dist/esm/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/esm/index.d.ts",
14
+ "import": "./dist/esm/index.js",
15
+ "require": "./dist/cjs/index.cjs"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md"
21
+ ],
22
+ "scripts": {
23
+ "build": "npm run clean && npm run build:esm && npm run build:cjs",
24
+ "build:esm": "tsc -p tsconfig.esm.json",
25
+ "build:cjs": "tsc -p tsconfig.cjs.json && node ./scripts/rename-cjs.mjs",
26
+ "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
27
+ "test": "npm run build && node --test test/*.test.mjs",
28
+ "lint": "node -e \"console.log('No lint configured for @jdsalasc/solvejs')\""
29
+ },
30
+ "dependencies": {
31
+ "@jdsalasc/solvejs-constants": "1.0.0",
32
+ "@jdsalasc/solvejs-date": "1.0.0",
33
+ "@jdsalasc/solvejs-list": "1.0.0",
34
+ "@jdsalasc/solvejs-regex": "1.0.0",
35
+ "@jdsalasc/solvejs-string": "1.0.0"
36
+ },
37
+ "publishConfig": {
38
+ "access": "public"
39
+ }
40
+ }