nextia 7.0.3 → 7.0.4

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 +5 -2
  2. package/package.json +1 -1
  3. package/biome.json +0 -21
package/README.md CHANGED
@@ -5,12 +5,15 @@ Create fast web applications
5
5
  ### To start
6
6
 
7
7
  ```sh
8
+ gcl git@github.com:sinuhedev/nextia.git
8
9
  npm install
9
- cd template
10
+ cd templates/web
10
11
  npm install
11
12
  node --run dev
12
13
  ```
13
14
 
14
- ### npmjs
15
+ ### links
16
+
17
+ [github.com/sinuhedev/nextia](https://github.com/sinuhedev/nextia)
15
18
 
16
19
  [npmjs.com/package/nextia](https://www.npmjs.com/package/nextia)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nextia",
3
3
  "description": "Create fast web applications",
4
- "version": "7.0.3",
4
+ "version": "7.0.4",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "engines": {
package/biome.json DELETED
@@ -1,21 +0,0 @@
1
- {
2
- "formatter": {
3
- "indentStyle": "space",
4
- "indentWidth": 2
5
- },
6
-
7
- "javascript": {
8
- "formatter": {
9
- "semicolons": "asNeeded",
10
- "quoteStyle": "single",
11
- "jsxQuoteStyle": "double",
12
- "trailingCommas": "none"
13
- }
14
- },
15
-
16
- "css": {
17
- "parser": {
18
- "tailwindDirectives": true
19
- }
20
- }
21
- }