@stamcat/craftsman 0.0.27-alpha.1 → 0.0.27-alpha.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.
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ Use this pattern in React Server Component architectures (for example Next.js Ap
|
|
|
17
17
|
|
|
18
18
|
```tsx
|
|
19
19
|
import { ThemeProvider } from "@stamcat/craftsman/styles";
|
|
20
|
-
import "@stamcat/craftsman/styles/globalStyles
|
|
20
|
+
import "@stamcat/craftsman/styles/globalStyles";
|
|
21
21
|
|
|
22
22
|
const appTheme = {
|
|
23
23
|
root: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stamcat/craftsman",
|
|
3
|
-
"version": "0.0.27-alpha.
|
|
3
|
+
"version": "0.0.27-alpha.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A powerful, lightweight framework for design systems",
|
|
6
6
|
"repository": {
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
"types": "./src/utilities/index.d.ts",
|
|
55
55
|
"default": "./Utilities.esm.js"
|
|
56
56
|
},
|
|
57
|
-
"./styles/globalStyles
|
|
58
|
-
"default": "./src/styles/global/globalStyles.
|
|
57
|
+
"./styles/globalStyles": {
|
|
58
|
+
"default": "./src/styles/global/globalStyles.scss"
|
|
59
59
|
},
|
|
60
|
-
"./styles/
|
|
61
|
-
"default": "./src/styles/global/globalStyles.
|
|
60
|
+
"./styles/globalStyles.scss": {
|
|
61
|
+
"default": "./src/styles/global/globalStyles.scss"
|
|
62
62
|
},
|
|
63
63
|
"./Button": {
|
|
64
64
|
"types": "./src/components/Button.d.ts",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@use "./globalStyles.module.scss";
|