@yutaura/csv-batch-reader 0.0.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 @@
1
+ # csv-batch-reader
@@ -0,0 +1,3 @@
1
+ export declare const x = 1;
2
+ export declare const main: () => never;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,CAAC,IAAI,CAAC;AAEnB,eAAO,MAAM,IAAI,aAEhB,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var src_exports = {};
22
+ __export(src_exports, {
23
+ main: () => main,
24
+ x: () => x
25
+ });
26
+ module.exports = __toCommonJS(src_exports);
27
+ console.log("Hello World!");
28
+ var x = 1;
29
+ var main = () => {
30
+ throw new Error("This is an error");
31
+ };
32
+ // Annotate the CommonJS export names for ESM import in node:
33
+ 0 && (module.exports = {
34
+ main,
35
+ x
36
+ });
37
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["console.log(\"Hello World!\");\n\nexport const x = 1;\n\nexport const main = () => {\n throw new Error(\"This is an error\");\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,QAAQ,IAAI,cAAc;AAEnB,IAAM,IAAI;AAEV,IAAM,OAAO,MAAM;AACxB,QAAM,IAAI,MAAM,kBAAkB;AACpC;","names":[]}
package/dist/index.mjs ADDED
@@ -0,0 +1,11 @@
1
+ // src/index.ts
2
+ console.log("Hello World!");
3
+ var x = 1;
4
+ var main = () => {
5
+ throw new Error("This is an error");
6
+ };
7
+ export {
8
+ main,
9
+ x
10
+ };
11
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["console.log(\"Hello World!\");\n\nexport const x = 1;\n\nexport const main = () => {\n throw new Error(\"This is an error\");\n};\n"],"mappings":";AAAA,QAAQ,IAAI,cAAc;AAEnB,IAAM,IAAI;AAEV,IAAM,OAAO,MAAM;AACxB,QAAM,IAAI,MAAM,kBAAkB;AACpC;","names":[]}
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@yutaura/csv-batch-reader",
3
+ "version": "0.0.0-0",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "scripts": {
8
+ "build": "tsup"
9
+ },
10
+ "exports": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs",
13
+ "require": "./dist/index.js"
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "src",
18
+ "README.md"
19
+ ],
20
+ "keywords": [
21
+ "csv"
22
+ ],
23
+ "author": "YutaUra",
24
+ "license": "MIT",
25
+ "packageManager": "pnpm@9.10.0",
26
+ "devDependencies": {
27
+ "@changesets/cli": "2.27.8",
28
+ "@microsoft/api-extractor": "7.47.9",
29
+ "@tsconfig/strictest": "2.0.5",
30
+ "@types/node": "22.6.1",
31
+ "tsup": "8.3.0",
32
+ "typescript": "5.6.2"
33
+ }
34
+ }
package/src/index.ts ADDED
@@ -0,0 +1,7 @@
1
+ console.log("Hello World!");
2
+
3
+ export const x = 1;
4
+
5
+ export const main = () => {
6
+ throw new Error("This is an error");
7
+ };