addfox 0.2.0 → 0.2.2

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 (2) hide show
  1. package/README.md +3 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -29,8 +29,9 @@
29
29
  **New project:**
30
30
 
31
31
  ```bash
32
- pnpm create addfox-app
33
- # or: npx create-addfox-app
32
+ npx addfox@latest create
33
+ # or: pnpm dlx addfox@latest create
34
+ # or: pnpm create addfox-app (legacy)
34
35
  ```
35
36
 
36
37
  Choose framework (Vanilla / Vue / React / Preact / Svelte / Solid), language, package manager, entries, and optional [Skills](https://github.com/addfox/skills). A full layout and `addfox.config` are generated.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "addfox",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Build tool for browser extensions — one install, addfox dev / build",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -39,9 +39,9 @@
39
39
  },
40
40
  "homepage": "https://addfox.dev",
41
41
  "dependencies": {
42
- "@addfox/cli": "0.2.0",
43
- "@addfox/core": "0.2.0",
44
- "@addfox/rsbuild-plugin-extension-monitor": "0.2.0"
42
+ "@addfox/core": "0.2.2",
43
+ "@addfox/cli": "0.2.2",
44
+ "@addfox/rsbuild-plugin-extension-monitor": "0.2.2"
45
45
  },
46
46
  "scripts": {
47
47
  "build": "echo 'No build step'",