@batik-prototype/math 0.0.0 → 0.1.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/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # @batik-prototype/math
2
+
3
+ ## 0.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`7dc0e09`](https://github.com/devsantara/batik-prototype/commit/7dc0e0960537beab10695c104d7f2cf765d0a233) - Add the initial mathematical utilities package.
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # `@batik-prototype/math`
2
+
3
+ Mathematical utilities for Batik design-system packages
4
+
5
+ ```ts
6
+ import { PACKAGE_NAME } from '@batik-prototype/math';
7
+ ```
8
+
9
+ | Export | Signature |
10
+ | -------------- | --------- |
11
+ | `PACKAGE_NAME` | `string` |
12
+
13
+ ## Scripts
14
+
15
+ ```bash
16
+ vp run build # vp pack - production build, then attw + publint + unused
17
+ vp run dev # vp pack --watch
18
+ vp test run # from the repo root, runs this package's tests too
19
+ ```
20
+
21
+ [`@batik-prototype/math`](../math#readme) documents why a package in this repo is wired
22
+ the way it is - the tsconfig split, the two `exports` maps, and the `#/` alias.
@@ -0,0 +1,9 @@
1
+ //#region src/placeholder.d.ts
2
+ /**
3
+ * Placeholder export, so a freshly generated package builds, type checks and
4
+ * tests green before it has any content of its own. Delete this file and its
5
+ * test alongside the first real export.
6
+ */
7
+ export declare const PACKAGE_NAME = "@batik-prototype/math";
8
+ //#endregion
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../src/placeholder.ts"],"mappings":";;;;;;qBAKa"}
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ const e=`@batik-prototype/math`;export{e as PACKAGE_NAME};
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":[],"sources":["../src/placeholder.ts"],"sourcesContent":["/**\n * Placeholder export, so a freshly generated package builds, type checks and\n * tests green before it has any content of its own. Delete this file and its\n * test alongside the first real export.\n */\nexport const PACKAGE_NAME = '@batik-prototype/math';\n"],"mappings":"AAKA,MAAa,EAAe"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@batik-prototype/math",
3
- "version": "0.0.0",
3
+ "version": "0.1.0",
4
4
  "description": "Mathematical utilities for Batik design-system packages",
5
5
  "keywords": [
6
6
  "design system",
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export { PACKAGE_NAME } from '#/placeholder';
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Placeholder export, so a freshly generated package builds, type checks and
3
+ * tests green before it has any content of its own. Delete this file and its
4
+ * test alongside the first real export.
5
+ */
6
+ export const PACKAGE_NAME = '@batik-prototype/math';