@muraldevkit/ui-toolkit 4.68.0-dev-nPeA.1 → 4.68.0-dev-qt54.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/README.md +6 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -39,3 +39,9 @@ If you have any questions or feedback, please let us know in slack `#ask-fe-plat
39
39
  Our doc site uses Storybook as living documentation and dev environment. We support [mdx](https://mdxjs.com/) files and standard Storybook files, we use [CSF version 3](https://storybook.js.org/blog/component-story-format-3-0/). You can find examples on how to add markdown docs to the doc section of our site in the `src/storybook_docs`. For documentation on how to write [Storybook stories](https://storybook.js.org/docs/react/writing-stories/introduction).
40
40
 
41
41
  _During deployments we remove the docs and strip comments._
42
+
43
+ ### Build system
44
+
45
+ The package ships a dual ESM + CJS build plus a global stylesheet and type
46
+ declarations. See the [Build system guide](./docs/build.md) for the output
47
+ layout, entry-point contract, and how Rollup, webpack, and tsc split the work.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muraldevkit/ui-toolkit",
3
- "version": "4.68.0-dev-nPeA.1",
3
+ "version": "4.68.0-dev-qt54.1",
4
4
  "description": "Mural's UI Toolkit",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -15,10 +15,11 @@
15
15
  "scripts": {
16
16
  "prebuild": "rimraf dist",
17
17
  "analyze": "ANALYZE=true rollup --config rollup.config.mjs",
18
- "build": "npm run build:js && npm run build:css && npm run build:types",
18
+ "build": "npm run build:js && npm run build:css && npm run build:types && npm run build:verify",
19
19
  "build:css": "webpack --mode=production",
20
20
  "build:js": "rollup --config rollup.config.mjs",
21
21
  "build:types": "tsc --project tsconfig.build.json",
22
+ "build:verify": "node scripts/verify-css-classnames.mjs",
22
23
  "compile": "storybook build",
23
24
  "dev": "storybook dev -p 6006",
24
25
  "dev:dev-tools": "DEV_TOOLS=true storybook dev -p 6006",