aaex-cli 1.0.1 → 1.1.0
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 +2 -5
- package/package.json +26 -26
package/README.md
CHANGED
|
@@ -15,8 +15,5 @@ Light weight SSR framework for react with filebased page and api routing. Builds
|
|
|
15
15
|
npx create-aaex-app <project-name>
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
##
|
|
19
|
-
|
|
20
|
-
for now the router and template project has some documentation
|
|
21
|
-
|
|
22
|
-
2. Data fetching is currently done client side but to the api, next version will have server loaded data
|
|
18
|
+
## V1.1
|
|
19
|
+
Added user system
|
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "aaex-cli",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"description": "Command line interface for creating aaexjs app",
|
|
5
|
-
"license": "ISC",
|
|
6
|
-
"author": "",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"bin": {
|
|
9
|
-
"create-aaex-app": "./create-aaex-app.js"
|
|
10
|
-
},
|
|
11
|
-
"scripts": {
|
|
12
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
13
|
-
},
|
|
14
|
-
"devDependencies": {
|
|
15
|
-
"@vitejs/plugin-react": "^5.1.1",
|
|
16
|
-
"aaex-file-router": "^1.4.5",
|
|
17
|
-
"react": "^19.2.1",
|
|
18
|
-
"react-dom": "^19.2.1",
|
|
19
|
-
"react-router": "^7.10.1",
|
|
20
|
-
"typescript": "^5.9.3",
|
|
21
|
-
"vite": "^7.2.6"
|
|
22
|
-
},
|
|
23
|
-
"dependencies": {
|
|
24
|
-
"fs-extra": "^11.3.2"
|
|
25
|
-
}
|
|
26
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "aaex-cli",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Command line interface for creating aaexjs app",
|
|
5
|
+
"license": "ISC",
|
|
6
|
+
"author": "",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": {
|
|
9
|
+
"create-aaex-app": "./create-aaex-app.js"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
16
|
+
"aaex-file-router": "^1.4.5",
|
|
17
|
+
"react": "^19.2.1",
|
|
18
|
+
"react-dom": "^19.2.1",
|
|
19
|
+
"react-router": "^7.10.1",
|
|
20
|
+
"typescript": "^5.9.3",
|
|
21
|
+
"vite": "^7.2.6"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"fs-extra": "^11.3.2"
|
|
25
|
+
}
|
|
26
|
+
}
|