@gitlab/ui 107.2.0 → 107.2.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 +7 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [107.2.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v107.2.0...v107.2.1) (2025-01-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Installation as a dependency ([e7ceee9](https://gitlab.com/gitlab-org/gitlab-ui/commit/e7ceee95c6b2d63446c8e0b04110b3a3896b2121))
7
+
1
8
  # [107.2.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v107.1.1...v107.2.0) (2025-01-17)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "107.2.0",
3
+ "version": "107.2.1",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -32,7 +32,6 @@
32
32
  "build": "NODE_ENV=production rollup -c",
33
33
  "prebuild": "run-s build-tokens build-migration-script",
34
34
  "prepare": "run-s build-tokens",
35
- "postinstall": "patch-package --error-on-fail --error-on-warn",
36
35
  "copy-fonts": "make copy-fonts",
37
36
  "build-tokens": "node ./bin/build_tokens.mjs",
38
37
  "build-migration-script": "esbuild --bundle --platform=node --target=esnext --outfile=bin/migrate_custom_utils_to_tw.bundled.mjs --format=esm --banner:js=\"import { createRequire as __gl__createRequire } from 'node:module'; const require = __gl__createRequire(import.meta.url);\" bin/migrate_custom_utils_to_tw.mjs",
@@ -43,7 +42,8 @@
43
42
  "start": "yarn storybook",
44
43
  "storybook": "yarn storybook:prepare && storybook dev --ci --host ${STORYBOOK_HOST:-localhost} --port 9001 -c .storybook",
45
44
  "storybook-vue3": "yarn storybook:prepare && VUE_VERSION=3 storybook dev --ci --host ${STORYBOOK_HOST:-localhost} --port 9001 -c .storybook",
46
- "storybook:prepare": "run-s copy-fonts build-tokens",
45
+ "storybook:patch": "patch-package --error-on-fail --error-on-warn",
46
+ "storybook:prepare": "run-s storybook:patch copy-fonts build-tokens",
47
47
  "storybook:build:prod": "yarn storybook:prepare && storybook build -c .storybook -o storybook",
48
48
  "storybook:build:test": "yarn storybook:prepare && IS_VISUAL_TEST=true NODE_ENV=test storybook build --test -c .storybook -o storybook",
49
49
  "storybook:run": "npx http-server -bgs -p 9001 ./storybook",