gds-lens 0.1.0 → 0.1.1
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 +33 -1
- package/README.md +1 -4
- package/dist/esm/gds-lens.js +1 -1
- package/dist/inline-wasm/gds-lens-engine.js +0 -0
- package/dist/web/gds-lens-engine.wasm +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,37 @@ status note at the top of the README.
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
+
## [0.1.1] - 2026-08-25
|
|
13
|
+
|
|
14
|
+
Nothing shipped in this release behaves differently. It exists because 0.1.0
|
|
15
|
+
was published by hand -- a trusted publisher can only be configured on a
|
|
16
|
+
package that already exists -- so this is the first tarball to go through the
|
|
17
|
+
tag-driven workflow, and the first to carry provenance.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- A shorter README opening.
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
Release tooling only; none of it is in the package.
|
|
26
|
+
|
|
27
|
+
- `eslint .` no longer reads the Emscripten SDK's own config. The CI action
|
|
28
|
+
unpacks the SDK *inside* the working tree, and the SDK ships an
|
|
29
|
+
`eslint.config.mjs` importing a plugin only Emscripten depends on, so lint
|
|
30
|
+
failed with `ERR_MODULE_NOT_FOUND` for a package this project has never
|
|
31
|
+
heard of, before looking at a single file of its own.
|
|
32
|
+
- `check:package` reads `npm pack --dry-run --json` in both shapes npm emits:
|
|
33
|
+
an array of packed-package objects on npm 11, the same objects keyed by
|
|
34
|
+
package name on npm 12. It had destructured the array form, which fails as
|
|
35
|
+
`TypeError: object is not iterable` -- naming neither npm nor a version.
|
|
36
|
+
|
|
37
|
+
Both of these could only fail in the publish job: it is the only place lint
|
|
38
|
+
runs alongside the SDK, and the only place npm is upgraded. `npm` is now
|
|
39
|
+
pinned to `^12` there rather than tracking `latest`, since the floor for
|
|
40
|
+
trusted publishing is 11.5.1 and a release is the worst place to learn that a
|
|
41
|
+
tool changed its output format.
|
|
42
|
+
|
|
12
43
|
## [0.1.0] - 2026-08-25
|
|
13
44
|
|
|
14
45
|
First release as a library.
|
|
@@ -163,5 +194,6 @@ web page rather than for a webview.
|
|
|
163
194
|
worker-loading route and shipped unsubstituted. The `createWorker` host hook
|
|
164
195
|
replaces it.
|
|
165
196
|
|
|
166
|
-
[Unreleased]: https://github.com/EthanLowenthal/GDS-Lens/compare/v0.1.
|
|
197
|
+
[Unreleased]: https://github.com/EthanLowenthal/GDS-Lens/compare/v0.1.1...HEAD
|
|
198
|
+
[0.1.1]: https://github.com/EthanLowenthal/GDS-Lens/compare/v0.1.0...v0.1.1
|
|
167
199
|
[0.1.0]: https://github.com/EthanLowenthal/GDS-Lens/releases/tag/v0.1.0
|
package/README.md
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
# GDS Lens
|
|
2
2
|
|
|
3
3
|
GDSII and OASIS chip layouts, parsed and rendered in the browser. A drop-in
|
|
4
|
-
custom element
|
|
5
|
-
WebAssembly and a WebGL2 renderer.
|
|
6
|
-
|
|
7
|
-
Reading and rendering only. Writing layouts is deliberately out of scope.
|
|
4
|
+
custom element compiled to pure JS+WASM with a WebGL2 renderer.
|
|
8
5
|
|
|
9
6
|

|
|
10
7
|
|