Skip to content

Commit

Permalink
chore(theme-utils): test lerna fixed versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Powerplex committed Jul 18, 2024
1 parent 7eb4568 commit a6e7898
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
8 changes: 6 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "independent",
"version": "4.2.0",
"command": {
"publish": {
"conventionalCommits": true,
Expand All @@ -10,5 +10,9 @@
"conventionalCommits": true
}
},
"ignoreChanges": ["**/CHANGELOG.md", "**/node_modules/**", "**/*.md"]
"ignoreChanges": [
"**/CHANGELOG.md",
"**/node_modules/**",
"**/*.md"
]
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"clean": "lerna clean --yes && lerna exec -- rm -rf dist",
"build": "lerna run build",
"build:watch": "lerna run build && lerna watch -- lerna run build --since",
"release": "lerna publish --yes",
"release": "lerna publish --yes --force-publish",
"storybook:start": "storybook dev -p 6006",
"storybook:build": "storybook build -o dist",
"tailwind-config-viewer": "npx @adevinta/tailwind-config-viewer -c ./tailwind.config.viewer.mjs",
Expand Down
3 changes: 2 additions & 1 deletion packages/utils/theme/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Theme

> @spark-ui/theme-utils
[![storybook](https://img.shields.io/badge/storybook-black?logo=storybook)](https://sparkui.vercel.app/?path=/docs/utils-theme--docs)
Expand All @@ -10,4 +11,4 @@
This package is part of the [`@spark-ui`](https://github.com/adevinta/spark) react-js user interface component library project.

[![Issues open](https://img.shields.io/github/issues-search/adevinta/spark?query=is%3Aopen%20label%3Autil%20label%3Atheme&logo=openbugbounty&logoColor=red&label=issues%20open&color=red)](https://github.com/adevinta/spark/issues?q=is%3Aopen+label%3Autil+label%3Atheme)
[![NPM](https://img.shields.io/npm/l/%40spark-ui%2Ftheme-utils)](https://github.com/adevinta/spark/blob/main/packages/utils/chip/LICENSE.md)
[![NPM](https://img.shields.io/npm/l/%40spark-ui%2Ftheme-utils)](https://github.com/adevinta/spark/blob/main/packages/utils/chip/LICENSE.md)
2 changes: 1 addition & 1 deletion packages/utils/theme/src/index.doc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const partialTheme: Partial<Theme> = {
const newTheme = createTheme(partialTheme)
```

- Using another theme as a base
- Using another theme as a base.

```tsx
import { createTheme, defaultThemeDark, Theme } from '@spark-ui/theme-utils'
Expand Down

0 comments on commit a6e7898

Please sign in to comment.