styleframe 2.1.0 → 2.1.1
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/CHANGELOG.md +6 -0
- package/README.md +5 -21
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# styleframe
|
|
2
2
|
|
|
3
|
+
## 2.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`ff9d806`](https://github.com/styleframe-dev/styleframe/commit/ff9d806a8f815f94225851db000f6428b07cd305) Thanks [@alexgrozav](https://github.com/alexgrozav)! - docs: update readme
|
|
8
|
+
|
|
3
9
|
## 2.1.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -31,32 +31,16 @@ Write type-safe, composable, future-proof Design Systems code using styleframe's
|
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
33
|
# npm
|
|
34
|
-
npm install
|
|
34
|
+
npx styleframe init && npm install
|
|
35
35
|
|
|
36
36
|
# pnpm
|
|
37
|
-
pnpm
|
|
37
|
+
pnpx styleframe init && pnpm install
|
|
38
38
|
|
|
39
39
|
# yarn
|
|
40
|
-
yarn
|
|
40
|
+
yarn styleframe init && yarn install
|
|
41
41
|
|
|
42
42
|
# bun
|
|
43
|
-
bun
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
### Initialization
|
|
47
|
-
|
|
48
|
-
```bash
|
|
49
|
-
# npm
|
|
50
|
-
npx styleframe init
|
|
51
|
-
|
|
52
|
-
# pnpm
|
|
53
|
-
pnpx styleframe init
|
|
54
|
-
|
|
55
|
-
# yarn
|
|
56
|
-
yarn styleframe init
|
|
57
|
-
|
|
58
|
-
# bun
|
|
59
|
-
bunx styleframe init
|
|
43
|
+
bunx styleframe init && bun install
|
|
60
44
|
```
|
|
61
45
|
|
|
62
46
|
Using the CLI command above, it will:
|
|
@@ -167,5 +151,5 @@ Looking for advanced features? Check out [Styleframe Pro](https://styleframe.dev
|
|
|
167
151
|
---
|
|
168
152
|
|
|
169
153
|
<div align="center">
|
|
170
|
-
<sub>Built with ❤️ by <a href="https://github.com/styleframe-dev">
|
|
154
|
+
<sub>Built with ❤️ by <a href="https://github.com/styleframe-dev">styleframe</a></sub>
|
|
171
155
|
</div>
|