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 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 styleframe
34
+ npx styleframe init && npm install
35
35
 
36
36
  # pnpm
37
- pnpm add styleframe
37
+ pnpx styleframe init && pnpm install
38
38
 
39
39
  # yarn
40
- yarn add styleframe
40
+ yarn styleframe init && yarn install
41
41
 
42
42
  # bun
43
- bun add styleframe
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">Styleframe</a></sub>
154
+ <sub>Built with ❤️ by <a href="https://github.com/styleframe-dev">styleframe</a></sub>
171
155
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "styleframe",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "bin": {
5
5
  "styleframe": "./dist/cli.cjs"
6
6
  },