@ng-prism/core 21.12.0-beta.1 → 21.12.0-beta.2

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.
@@ -7,7 +7,7 @@ export function providePrism(manifest, config, options) {
7
7
  const mergedManifest = options?.componentPages?.length
8
8
  ? { ...manifest, pages: [...(manifest.pages ?? []), ...options.componentPages.map(o => componentPage(o))] }
9
9
  : manifest;
10
- // Expose a thin discovery view of the manifest to audit tooling (e.g. ng-prism-audit-a11y).
10
+ // Exposes a thin discovery view of the manifest to external audit tooling.
11
11
  // We intentionally only expose className + variant info — no Angular type references.
12
12
  if (typeof globalThis !== 'undefined') {
13
13
  globalThis['__PRISM_MANIFEST__'] = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ng-prism/core",
3
- "version": "21.12.0-beta.1",
3
+ "version": "21.12.0-beta.2",
4
4
  "description": "ng-prism — the Angular-native Storybook alternative. Lightweight component showcase with @Showcase decorator, no story files needed.",
5
5
  "keywords": [
6
6
  "ng-prism",
@@ -50,8 +50,7 @@
50
50
  }
51
51
  },
52
52
  "bin": {
53
- "ng-prism-strip": "./dist/transformer/cli.js",
54
- "ng-prism-audit-a11y": "./dist/cli/audit-a11y/cli.js"
53
+ "ng-prism-strip": "./dist/transformer/cli.js"
55
54
  },
56
55
  "schematics": "./schematics/collection.json",
57
56
  "builders": "./builders.json",
@@ -71,9 +70,7 @@
71
70
  "@angular-devkit/schematics": ">=21.0.0",
72
71
  "typescript": ">=5.5.0",
73
72
  "highlight.js": ">=11.0.0",
74
- "ngx-highlightjs": ">=14.0.0",
75
- "playwright": ">=1.40.0",
76
- "axe-core": ">=4.0.0"
73
+ "ngx-highlightjs": ">=14.0.0"
77
74
  },
78
75
  "peerDependenciesMeta": {
79
76
  "@angular-devkit/architect": {
@@ -81,12 +78,6 @@
81
78
  },
82
79
  "@angular-devkit/schematics": {
83
80
  "optional": false
84
- },
85
- "playwright": {
86
- "optional": true
87
- },
88
- "axe-core": {
89
- "optional": true
90
81
  }
91
82
  },
92
83
  "dependencies": {