Skip to content

Commit aa27a32

Browse files
committed
Updated react-color dependency
1 parent 5fa9a13 commit aa27a32

File tree

18 files changed

+281
-42
lines changed

18 files changed

+281
-42
lines changed

.vscode/extensions.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"recommendations": ["arcanis.vscode-zipfs", "esbenp.prettier-vscode"]
2+
"recommendations": [
3+
"arcanis.vscode-zipfs",
4+
"esbenp.prettier-vscode"
5+
]
36
}

.yarn/sdks/prettier/bin/prettier.cjs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env node
22

3-
const { existsSync } = require(`fs`);
4-
const { createRequire, register } = require(`module`);
5-
const { resolve } = require(`path`);
6-
const { pathToFileURL } = require(`url`);
3+
const {existsSync} = require(`fs`);
4+
const {createRequire, register} = require(`module`);
5+
const {resolve} = require(`path`);
6+
const {pathToFileURL} = require(`url`);
77

88
const relPnpApiPath = "../../../../.pnp.cjs";
99

@@ -25,8 +25,8 @@ if (existsSync(absPnpApiPath)) {
2525
}
2626

2727
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28-
? (exports) => absRequire(absUserWrapperPath)(exports)
29-
: (exports) => exports;
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
3030

3131
// Defer to the real prettier/bin/prettier.cjs your application uses
3232
module.exports = wrapWithUserWrapper(absRequire(`prettier/bin/prettier.cjs`));

.yarn/sdks/prettier/index.cjs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env node
22

3-
const { existsSync } = require(`fs`);
4-
const { createRequire, register } = require(`module`);
5-
const { resolve } = require(`path`);
6-
const { pathToFileURL } = require(`url`);
3+
const {existsSync} = require(`fs`);
4+
const {createRequire, register} = require(`module`);
5+
const {resolve} = require(`path`);
6+
const {pathToFileURL} = require(`url`);
77

88
const relPnpApiPath = "../../../.pnp.cjs";
99

@@ -25,8 +25,8 @@ if (existsSync(absPnpApiPath)) {
2525
}
2626

2727
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28-
? (exports) => absRequire(absUserWrapperPath)(exports)
29-
: (exports) => exports;
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
3030

3131
// Defer to the real prettier your application uses
3232
module.exports = wrapWithUserWrapper(absRequire(`prettier`));

.yarn/sdks/prettier/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "prettier",
3-
"version": "3.6.1-sdk",
3+
"version": "3.7.4-sdk",
44
"main": "./index.cjs",
55
"type": "commonjs",
66
"bin": "./bin/prettier.cjs"

.yarn/sdks/typescript/bin/tsc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env node
22

3-
const { existsSync } = require(`fs`);
4-
const { createRequire, register } = require(`module`);
5-
const { resolve } = require(`path`);
6-
const { pathToFileURL } = require(`url`);
3+
const {existsSync} = require(`fs`);
4+
const {createRequire, register} = require(`module`);
5+
const {resolve} = require(`path`);
6+
const {pathToFileURL} = require(`url`);
77

88
const relPnpApiPath = "../../../../.pnp.cjs";
99

@@ -25,8 +25,8 @@ if (existsSync(absPnpApiPath)) {
2525
}
2626

2727
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28-
? (exports) => absRequire(absUserWrapperPath)(exports)
29-
: (exports) => exports;
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
3030

3131
// Defer to the real typescript/bin/tsc your application uses
3232
module.exports = wrapWithUserWrapper(absRequire(`typescript/bin/tsc`));

.yarn/sdks/typescript/bin/tsserver

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env node
22

3-
const { existsSync } = require(`fs`);
4-
const { createRequire, register } = require(`module`);
5-
const { resolve } = require(`path`);
6-
const { pathToFileURL } = require(`url`);
3+
const {existsSync} = require(`fs`);
4+
const {createRequire, register} = require(`module`);
5+
const {resolve} = require(`path`);
6+
const {pathToFileURL} = require(`url`);
77

88
const relPnpApiPath = "../../../../.pnp.cjs";
99

@@ -25,8 +25,8 @@ if (existsSync(absPnpApiPath)) {
2525
}
2626

2727
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
28-
? (exports) => absRequire(absUserWrapperPath)(exports)
29-
: (exports) => exports;
28+
? exports => absRequire(absUserWrapperPath)(exports)
29+
: exports => exports;
3030

3131
// Defer to the real typescript/bin/tsserver your application uses
3232
module.exports = wrapWithUserWrapper(absRequire(`typescript/bin/tsserver`));

.yarn/sdks/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript",
3-
"version": "5.8.3-sdk",
3+
"version": "5.9.3-sdk",
44
"main": "./lib/typescript.js",
55
"type": "commonjs",
66
"bin": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"publish:storybook": "./scripts/publish-storybook.sh",
1919
"format": "prettier --write .",
2020
"check-types": "tsc --noEmit",
21-
"check-circular": "madge --exclude __archive --circular --extensions ts,tsx ."
21+
"check-circular": "madge --exclude __archive --exclude .yarn --circular --extensions ts,tsx ."
2222
},
2323
"author": "Daven Quinn",
2424
"license": "ISC",

packages/column-components/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format
44
is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this
55
project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.0.3] - 2026-01-28
8+
9+
Update handling of `@uiw/react-color` dependency
10+
711
## [2.0.2] - 2026-01-28
812

913
Add rollup interop to fix CommonJS dependency linking issues

packages/column-components/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@macrostrat/column-components",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "React rendering primitives for stratigraphic columns",
55
"keywords": [
66
"geology",
@@ -53,7 +53,7 @@
5353
"@macrostrat/stratigraphy-utils": "workspace:^",
5454
"@macrostrat/timescale": "workspace:^",
5555
"@macrostrat/ui-components": "workspace:^",
56-
"@uiw/react-color-swatch": "^2.9.2",
56+
"@uiw/react-color": "^2.9.2",
5757
"chroma-js": "^3.2.0",
5858
"classnames": "^2.5.1",
5959
"d3-axis": "^3.0.0",

0 commit comments

Comments
 (0)