@sarthak_krishak/inkforge 0.3.0 → 0.4.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/Readme.md CHANGED
@@ -64,8 +64,8 @@ This copies the component source files directly into your project. You own them
64
64
  ### Step 5 — Open `app.jsx`, import your components, and run
65
65
 
66
66
  ```jsx
67
- import { Spinner } from './src/components/inkforge/Spinner/index.jsx';
68
- import { ProgressBar } from './src/components/inkforge/ProgressBar/index.jsx';
67
+ import { Spinner } from './components/inkforge/Spinner/index.jsx';
68
+ import { ProgressBar } from './components/inkforge/ProgressBar/index.jsx';
69
69
  ```
70
70
 
71
71
  ```bash
package/cli/index.js CHANGED
@@ -186,8 +186,8 @@ import { render, Box, Text } from 'ink';
186
186
  // npx inkforge add spinner
187
187
  // npx inkforge add progressbar
188
188
  //
189
- // import { Spinner } from './src/components/inkforge/Spinner/index.jsx';
190
- // import { ProgressBar } from './src/components/inkforge/ProgressBar/index.jsx';
189
+ // import { Spinner } from './components/inkforge/Spinner/index.jsx';
190
+ // import { ProgressBar } from './components/inkforge/ProgressBar/index.jsx';
191
191
 
192
192
  function App() {
193
193
  return (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sarthak_krishak/inkforge",
3
- "version": "0.3.0",
3
+ "version": "0.4.1",
4
4
  "description": "Beautiful terminal UI components for React/Ink — shadcn/ui for your terminal",
5
5
  "type": "module",
6
6
  "main": "src/index.jsx",