@pptx-studio/render-dom 0.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/package.json +15 -14
package/CHANGELOG.md ADDED
@@ -0,0 +1,29 @@
1
+ # @pptx-studio/render-dom
2
+
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 55f3073: The help text spells `this platform's own font directories` with its apostrophe, and the
8
+ `render-dom` tarball carries `CHANGELOG.md` like the other eleven.
9
+ - Updated dependencies [55f3073]
10
+ - @pptx-studio/render-svg@0.2.0
11
+
12
+ ## 0.1.0
13
+
14
+ ### Minor Changes
15
+
16
+ - 63d04e0: `mountSlide` and `mountOverlay` can be installed.
17
+
18
+ The live DOM renderer was the twelfth package and the only one never published. It sat at `0.0.0`
19
+ in changesets' `ignore`, so `@pptx-studio/render-dom` did not exist on the registry at all and the
20
+ two mount entry points were reachable only from a checkout of this repository.
21
+
22
+ That was not a decision about the code. A trusted publisher is a setting on an npm package and npm
23
+ has no way to attach one to a name the registry does not hold, so the first publish of a new name
24
+ cannot go out over OIDC — the release would have reached it, failed to authenticate, and stopped
25
+ partway. The name now exists, its trusted publisher points at this repository's `release.yml`, and
26
+ the package is a normal member of the release.
27
+
28
+ Nothing about the package itself changed. `shapeOverlay`, the debug overlay, stays in
29
+ `render-svg` where it always was.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pptx-studio/render-dom",
3
- "version": "0.0.0",
3
+ "version": "0.1.1",
4
4
  "description": "The live DOM renderer: one element per shape, over the same layout engine as render-svg",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -29,6 +29,7 @@
29
29
  "files": [
30
30
  "dist",
31
31
  "README.md",
32
+ "CHANGELOG.md",
32
33
  "LICENSE",
33
34
  "NOTICE"
34
35
  ],
@@ -39,20 +40,20 @@
39
40
  },
40
41
  "./package.json": "./package.json"
41
42
  },
42
- "scripts": {
43
- "build": "tsdown",
44
- "pkg:qa": "publint --strict && attw --pack . --profile esm-only"
45
- },
46
43
  "dependencies": {
47
- "@pptx-studio/geometry": "workspace:^",
48
- "@pptx-studio/model": "workspace:^",
49
- "@pptx-studio/paint": "workspace:^",
50
- "@pptx-studio/render-svg": "workspace:^"
44
+ "@pptx-studio/geometry": "^0.1.1",
45
+ "@pptx-studio/model": "^0.1.1",
46
+ "@pptx-studio/paint": "^0.1.1",
47
+ "@pptx-studio/render-svg": "^0.2.0"
51
48
  },
52
49
  "devDependencies": {
53
- "@arethetypeswrong/cli": "catalog:",
54
- "publint": "catalog:",
55
- "tsdown": "catalog:",
56
- "typescript": "catalog:"
50
+ "@arethetypeswrong/cli": "0.18.5",
51
+ "publint": "0.3.24",
52
+ "tsdown": "0.22.14",
53
+ "typescript": "6.0.3"
54
+ },
55
+ "scripts": {
56
+ "build": "tsdown",
57
+ "pkg:qa": "publint --strict && attw --pack . --profile esm-only"
57
58
  }
58
- }
59
+ }