Skip to content

Commit 753f500

Browse files
authored
Merge pull request #233 from eccenca/release/v24.0.0
Fix v24.0.0 relase publishing
2 parents 42e6098 + a96ff9f commit 753f500

4 files changed

Lines changed: 29 additions & 3 deletions

File tree

.storybook/main.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
const sass = require("sass");
2+
const path = require("path");
23
const sassRenderSyncConfig = require("./../scripts/sassConfig");
4+
35
module.exports = {
46
stories: ["../src/**/*.stories.@(js|jsx|ts|tsx)"],
57
addons: [
@@ -84,6 +86,11 @@ module.exports = {
8486
return rule;
8587
}),
8688
];
89+
config.resolve.alias = {
90+
...config.resolve.alias,
91+
// Fix nasty bug with importing from this package, Storybook webpack cannot resolve it otherwise
92+
"@codemirror/legacy-modes": path.resolve(__dirname, "../node_modules/@codemirror/legacy-modes"),
93+
};
8794
return config;
8895
},
8996
docs: {

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
66

77
## [Unreleased]
88

9-
## [24.0.0] - 2024-12-17
10-
119
This is a major release, and it might be not compatible with your current usage of our library. Please read about the necessary changes in the section about how to migrate.
1210

1311
### Migration from v23 to v24

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@
137137
"jest-pnp-resolver": "^1.2.3",
138138
"lint-staged": "^15.2.9",
139139
"node-sass-package-importer": "^5.3.3",
140+
"path": "^0.12.7",
140141
"prettier": "^2.8.8",
141142
"react-app-polyfill": "^3.0.0",
142143
"react-lorem-ipsum": "^1.4.9",

yarn.lock

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7796,6 +7796,11 @@ inherits@2, inherits@^2.0.3, inherits@^2.0.4:
77967796
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
77977797
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
77987798

7799+
inherits@2.0.3:
7800+
version "2.0.3"
7801+
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
7802+
integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==
7803+
77997804
ini@^1.3.4, ini@^1.3.5:
78007805
version "1.3.8"
78017806
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
@@ -10295,6 +10300,14 @@ path-type@^5.0.0:
1029510300
resolved "https://registry.yarnpkg.com/path-type/-/path-type-5.0.0.tgz#14b01ed7aea7ddf9c7c3f46181d4d04f9c785bb8"
1029610301
integrity sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==
1029710302

10303+
path@^0.12.7:
10304+
version "0.12.7"
10305+
resolved "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f"
10306+
integrity sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==
10307+
dependencies:
10308+
process "^0.11.1"
10309+
util "^0.10.3"
10310+
1029810311
pathe@^1.1.1, pathe@^1.1.2:
1029910312
version "1.1.2"
1030010313
resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.2.tgz#6c4cb47a945692e48a1ddd6e4094d170516437ec"
@@ -10556,7 +10569,7 @@ prismjs@~1.27.0:
1055610569
resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.27.0.tgz#bb6ee3138a0b438a3653dd4d6ce0cc6510a45057"
1055710570
integrity sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==
1055810571

10559-
process@^0.11.10:
10572+
process@^0.11.1, process@^0.11.10:
1056010573
version "0.11.10"
1056110574
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
1056210575
integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==
@@ -12715,6 +12728,13 @@ util-deprecate@^1.0.1, util-deprecate@^1.0.2:
1271512728
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
1271612729
integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
1271712730

12731+
util@^0.10.3:
12732+
version "0.10.4"
12733+
resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901"
12734+
integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==
12735+
dependencies:
12736+
inherits "2.0.3"
12737+
1271812738
util@^0.12.4, util@^0.12.5:
1271912739
version "0.12.5"
1272012740
resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc"

0 commit comments

Comments
 (0)