vaderjs 1.3.7-alpha-3 → 1.3.7

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.
Files changed (3) hide show
  1. package/README.md +2 -15
  2. package/package.json +1 -1
  3. package/vader +0 -0
package/README.md CHANGED
@@ -41,28 +41,15 @@ Open folder in vsc - open terminal and type wsl then type `code .` and continue
41
41
  npm i vaderjs
42
42
  ```
43
43
 
44
- 3. Create Proper Folders
45
-
46
- Create a pages folder - which allows you to have nextjs page like routing via buns file based router
44
+ 3. create a pages folder and add some jsx! - look below for valid file paths
47
45
 
48
46
  ```bash
49
47
  /pages/index.jsx = /
50
48
  /pages/home/[page].jsx = /home/:page
51
49
  /pages/path/index.jsx = /path/file
52
50
  ```
53
- Keyword folders - all files are passed from these folders to the `dist` folder
54
-
55
- ```bash
56
-
57
- pages - used for jsx route files
58
- src - used for your jsx components / javascript files
59
- public - used for anything
60
-
61
- ```
62
-
63
-
64
51
 
65
- 4. And your done - Run `bun run vader --build` and the compiled output is visible inside of the `/dist/` folder!
52
+ 4. And your done - Run `npm run build` and the compiled output is visible inside of the `/dist/` folder!
66
53
 
67
54
  ## Key Features & Examples
68
55
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "vaderjs",
3
3
  "description": "A Reactive library aimed to helping you build reactive applications inspired by react.js",
4
4
  "module": "vader.js",
5
- "version": "1.3.7-alpha-3",
5
+ "version": "1.3.7",
6
6
  "bin": {
7
7
  "vader": "./vader"
8
8
  },
package/vader CHANGED
Binary file