-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into HEAD
* origin/main: Refactored some files Update typescript Fixed storybook dark mode theming Update to simpler Storybook config
- Loading branch information
Showing
38 changed files
with
1,069 additions
and
1,170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,4 +38,4 @@ storybook-static | |
# (e.g. https://github.com/UW-Macrostrat/web). | ||
yarn.lock | ||
|
||
packages/*/dist | ||
packages/*/dist |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"proseWrap": "always" | ||
} |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
packageExtensions: | ||
"@storybook/core-common@*": | ||
dependencies: | ||
"@storybook/react-webpack5": "*" | ||
[email protected]: | ||
dependencies: | ||
"#ansi-styles": "npm:[email protected]" | ||
|
@@ -17,4 +14,4 @@ pnpFallbackMode: all | |
|
||
pnpMode: loose | ||
|
||
yarnPath: .yarn/releases/yarn-4.1.1.cjs | ||
yarnPath: .yarn/releases/yarn-4.5.0.cjs |
This file was deleted.
Oops, something went wrong.
Submodule geologic-patterns
updated
9 files
+2 −0 | .gitignore | |
+8 −0 | Makefile | |
+2 −1 | assets/png-uncompressed/README.md | |
+4 −0 | build-images | |
+7 −2 | package.json | |
+278 −0 | poetry.lock | |
+2 −0 | poetry.toml | |
+5 −3 | procreate-brushes/create-brushes | |
+18 −0 | pyproject.toml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,11 @@ | ||
{ | ||
"name": "@macrostrat/web-components", | ||
"version": "1.0.0", | ||
"description": "Web components for stratigraphy and geologic mapping managed by Macrostrat", | ||
"private": true, | ||
"repository": "https://github.com/UW-Macrostrat/web-components.git", | ||
"scripts": { | ||
"dev:legacy": "npm-run-all -l -p dev watch:**", | ||
"watch:map": "npm --prefix packages/map-components run watch:main", | ||
"watch:ui": "npm --prefix packages/ui-components run dev", | ||
"watch:column": "npm --prefix packages/column-components run watch", | ||
"watch:timescale": "npm --prefix packages/timescale run watch", | ||
"deploy": "./scripts/deploy-steno", | ||
"dev": "./scripts/run-dev-server", | ||
"clean": "rm -rf .cache dist", | ||
"dev:storybook": "yarn workspace @macrostrat/storybook run dev", | ||
"build:storybook": "yarn workspace @macrostrat/storybook run build", | ||
"dev:concepts": "yarn workspace concept-apps run dev", | ||
"dev": "yarn workspace @macrostrat/storybook run dev", | ||
"build": "yarn workspace @macrostrat/storybook run build", | ||
"publish": "node ./scripts/publish.mjs" | ||
}, | ||
"author": "Daven Quinn", | ||
|
@@ -25,28 +15,24 @@ | |
"@macrostrat/map-components": "./packages/map-components/src", | ||
"@macrostrat/api-views": "./packages/api-views/src", | ||
"@macrostrat/timescale": "./packages/timescale/src", | ||
"@macrostrat/mapbox-styles": "./packages/mapbox-styles/src" | ||
"@macrostrat/mapbox-styles": "./packages/mapbox-styles/src", | ||
"@macrostrat/ui-components": "./packages/ui-components/src", | ||
"@macrostrat/column-components": "./packages/column-components/src" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.18.10", | ||
"@babel/preset-env": "^7.21.4", | ||
"@babel/preset-typescript": "^7.21.4", | ||
"@parcel/packager-ts": "2.9.3", | ||
"@parcel/transformer-sass": "^2.9.3", | ||
"@parcel/transformer-stylus": "^2.9.3", | ||
"@parcel/transformer-typescript-types": "^2.9.3", | ||
"@types/pg": "^8", | ||
"axios": "^0.27.2", | ||
"chalk": "^5.0.1", | ||
"concurrently": "^7.2.2", | ||
"geologic-patterns": "^2.0.0-dev1", | ||
"husky": "^4.3.5", | ||
"lerna": "^4.0.0", | ||
"node-fetch": "^3.2.9", | ||
"parcel": "^2.9.3", | ||
"prettier": "^2.7.1", | ||
"sass": "^1.62.0", | ||
"typescript": "^4.7.4" | ||
"typescript": "^5.6.2" | ||
}, | ||
"publishedPackages": [ | ||
"ui-components", | ||
|
@@ -60,8 +46,7 @@ | |
"storybook", | ||
"toolchain/*" | ||
], | ||
"prettier": {}, | ||
"packageManager": "[email protected]", | ||
"packageManager": "[email protected]", | ||
"dependenciesMeta": { | ||
"[email protected]": { | ||
"unplugged": true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
vite.config.js | ||
vite.config.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.