extension 1.7.1 → 1.8.0-beta.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
@@ -130,17 +130,17 @@ npm install extension --save-dev
130
130
 
131
131
  **Step 2 - Link your npm scripts with the executable Extension.js commands**
132
132
 
133
- ```json5
133
+ ```json
134
134
  {
135
135
  "scripts": {
136
136
  "build": "extension build",
137
137
  "dev": "extension dev",
138
- "start": "extension start",
138
+ "start": "extension start"
139
139
  },
140
140
  "devDependencies": {
141
141
  // ...other dependencies
142
- "extension": "latest",
143
- },
142
+ "extension": "latest"
143
+ }
144
144
  }
145
145
  ```
146
146
 
package/dist/cli.js CHANGED
@@ -141,7 +141,7 @@ var package_default = {
141
141
  node: ">=18"
142
142
  },
143
143
  name: "extension",
144
- version: "1.7.1",
144
+ version: "1.8.0-beta.1",
145
145
  description: "Create cross-browser extensions with no build configuration.",
146
146
  main: "./dist/cli.js",
147
147
  types: "./dist/cli.d.ts",
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "node": ">=18"
10
10
  },
11
11
  "name": "extension",
12
- "version": "1.7.1",
12
+ "version": "1.8.0-beta.1",
13
13
  "description": "Create cross-browser extensions with no build configuration.",
14
14
  "main": "./dist/cli.js",
15
15
  "types": "./dist/cli.d.ts",