@mfdj/tsc-as-build-tool 2.10.0 → 2.11.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.
@@ -0,0 +1,4 @@
1
+ import type { ReactNode } from "react";
2
+ export declare function BeaconComponent(): ReactNode;
3
+ export declare function beacon(): string;
4
+ //# sourceMappingURL=Beacon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Beacon.d.ts","sourceRoot":"","sources":["../src/Beacon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,wBAAgB,eAAe,IAAI,SAAS,CAE3C;AAED,wBAAgB,MAAM,IAAI,MAAM,CAE/B"}
package/dist/Beacon.js ADDED
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export function BeaconComponent() {
3
+ return _jsx("h1", { children: beacon() });
4
+ }
5
+ export function beacon() {
6
+ return 'Beacon: 👨🏻‍🔬 default 🧐';
7
+ }
8
+ //# sourceMappingURL=Beacon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Beacon.js","sourceRoot":"","sources":["../src/Beacon.tsx"],"names":[],"mappings":";AAEA,MAAM,UAAU,eAAe;IAC7B,OAAO,uBAAK,MAAM,EAAE,GAAM,CAAA;AAC5B,CAAC;AAED,MAAM,UAAU,MAAM;IACpB,OAAO,4BAA4B,CAAC;AACtC,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { ReactNode } from "react";
2
+ export declare function BeaconComponent(): ReactNode;
3
+ export declare function beacon(): string;
4
+ //# sourceMappingURL=Beacon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Beacon.d.ts","sourceRoot":"","sources":["../src/Beacon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,wBAAgB,eAAe,IAAI,SAAS,CAE3C;AAED,wBAAgB,MAAM,IAAI,MAAM,CAE/B"}
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BeaconComponent = BeaconComponent;
4
+ exports.beacon = beacon;
5
+ const jsx_runtime_1 = require("react/jsx-runtime");
6
+ function BeaconComponent() {
7
+ return (0, jsx_runtime_1.jsx)("h1", { children: beacon() });
8
+ }
9
+ function beacon() {
10
+ return 'Beacon: 👨🏻‍🔬 default 🧐';
11
+ }
12
+ //# sourceMappingURL=Beacon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Beacon.js","sourceRoot":"","sources":["../src/Beacon.tsx"],"names":[],"mappings":";;AAEA,0CAEC;AAED,wBAEC;;AAND,SAAgB,eAAe;IAC7B,OAAO,yCAAK,MAAM,EAAE,GAAM,CAAA;AAC5B,CAAC;AAED,SAAgB,MAAM;IACpB,OAAO,4BAA4B,CAAC;AACtC,CAAC"}
package/package.json CHANGED
@@ -17,6 +17,10 @@
17
17
  "require": "./dist-cjs/index.js",
18
18
  "default": "./dist/index.js"
19
19
  },
20
+ "./Beacon.js": {
21
+ "require": "./dist-cjs/Beacon.js",
22
+ "default": "./dist/Beacon.js"
23
+ },
20
24
  "./*.js": "./dist/*.js"
21
25
  },
22
26
  "files": [
@@ -40,6 +44,6 @@
40
44
  "test:watch": "./script/test-watch.sh",
41
45
  "typecheck": "tsc --build --noEmit"
42
46
  },
43
- "version": "2.10.0",
47
+ "version": "2.11.0",
44
48
  "type": "module"
45
49
  }