@synerise/ds-core 1.11.1 → 1.11.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +9 -11
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.11.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@1.11.1...@synerise/ds-core@1.11.2) (2026-04-10)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-core
9
+
6
10
  ## [1.11.1](https://github.com/synerise/synerise-design/compare/@synerise/ds-core@1.11.0...@synerise/ds-core@1.11.1) (2026-03-24)
7
11
 
8
12
  **Note:** Version bump only for package @synerise/ds-core
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-core",
3
- "version": "1.11.1",
3
+ "version": "1.11.2",
4
4
  "description": "Core Components for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -19,18 +19,15 @@
19
19
  "scripts": {
20
20
  "build": "vite build",
21
21
  "build:watch": "vite build --watch",
22
- "build:css": "node ../../../scripts/style/less.js",
23
- "build:js": "babel --delete-dir-on-start --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
24
22
  "copy": "node ./build/copy.js",
25
- "defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
26
23
  "pack:ci": "pnpm pack --pack-destination ../../storybook/storybook-static/static",
27
24
  "prepublish": "pnpm run build",
28
- "test": "jest && pnpm test:timezones",
29
- "test:timezone-ny": "TZ=America/New_York jest -t TimezoneTesting",
30
- "test:timezone-utc": "TZ=UTC jest -t TimezoneTesting",
31
- "test:timezone-waw": "TZ=Europe/Warsaw jest -t TimezoneTesting",
25
+ "test": "vitest run && pnpm test:timezones",
26
+ "test:timezone-ny": "TZ=America/New_York vitest run -t TimezoneTesting",
27
+ "test:timezone-utc": "TZ=UTC vitest run -t TimezoneTesting",
28
+ "test:timezone-waw": "TZ=Europe/Warsaw vitest run -t TimezoneTesting",
32
29
  "test:timezones": "pnpm test:timezone-utc && pnpm test:timezone-ny && pnpm test:timezone-waw",
33
- "test:watch": "pnpm run test -- --watchAll",
30
+ "test:watch": "vitest",
34
31
  "types": "tsc --noEmit",
35
32
  "check:circular-dependencies": "madge --circular --extensions ts,tsx,js,jsx --ts-config tsconfig.json src/ --exclude '/dist/'",
36
33
  "upgrade:ds": "ncu -f \"@synerise/ds-*\" -u",
@@ -48,7 +45,8 @@
48
45
  "antd": "4.24.16",
49
46
  "react": ">=16.9.0 <= 18.3.1",
50
47
  "react-intl": ">=3.12.0 <= 6.8",
51
- "styled-components": "^5.3.3"
48
+ "styled-components": "^5.3.3",
49
+ "vitest": "4"
52
50
  },
53
51
  "devDependencies": {
54
52
  "@formatjs/icu-messageformat-parser": "^2.11.1",
@@ -57,5 +55,5 @@
57
55
  "hex-rgb": "^5.0.0",
58
56
  "less-vars-to-js": "^1.3.0"
59
57
  },
60
- "gitHead": "e4ecca8944fc9b41c1b9d59c8bcad5e5e2013225"
58
+ "gitHead": "ce3c6d75efe8573a2b274853636f959b75a6cd32"
61
59
  }