@open-condo/ui 2.30.0 → 2.31.0

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/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "React",
9
9
  "components"
10
10
  ],
11
- "version": "2.30.0",
11
+ "version": "2.31.0",
12
12
  "repository": {
13
13
  "type": "git",
14
14
  "url": "git+https://github.com/open-condo-software/condo.git",
@@ -28,13 +28,14 @@
28
28
  "not IE 10"
29
29
  ],
30
30
  "scripts": {
31
- "build:deps": "turbo build --filter=ui^...",
31
+ "build:deps": "turbo build --filter=@open-condo/ui^...",
32
32
  "build:styles": "find src/tokens -mindepth 1 -not -name 'tokens.json' -delete && node bin/prepare-tokens.js && node bin/buildStyleVars/runner.js --web less css",
33
33
  "build:colors": "find src/colors -mindepth 1 -not -name 'index.ts' -delete && node bin/generate-colors.js",
34
34
  "build:tokens": "yarn build:styles && yarn build:colors",
35
35
  "build:lib": "webpack --config webpack.prod.js && tsc --project tsconfig.prod.json",
36
36
  "build": "yarn build:tokens && yarn build:lib",
37
37
  "build:sb": "storybook build",
38
+ "build:chromatic": "yarn build:deps && yarn build:tokens && yarn build:sb",
38
39
  "dev": "yarn build:deps && yarn build:tokens && storybook dev -p 6006",
39
40
  "watch": "yarn build:deps && yarn build:tokens && webpack --config webpack.dev.js"
40
41
  },