@abtasty/widget-quality 0.0.5-6 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/form.js +1 -1
- package/dist/main.js +1 -1
- package/package.json +4 -5
- package/README.md +0 -31
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abtasty/widget-quality",
|
3
3
|
"description": "Allow you to add a promonional banner on you website",
|
4
|
-
"version": "0.0.
|
4
|
+
"version": "0.0.6",
|
5
5
|
"form": "dist/form.js",
|
6
6
|
"main": "dist/main.js",
|
7
7
|
"files": [
|
@@ -15,8 +15,7 @@
|
|
15
15
|
"buildtestdeps": "rollup -c rolluptests.config.js",
|
16
16
|
"watch": "rollup -c --watch",
|
17
17
|
"build": "rollup -c",
|
18
|
-
"serve": "widget serve"
|
19
|
-
"prepare": "npm run build"
|
18
|
+
"serve": "widget serve"
|
20
19
|
},
|
21
20
|
"devDependencies": {
|
22
21
|
"@babel/core": "^7.10.2",
|
@@ -35,11 +34,11 @@
|
|
35
34
|
"rollup-plugin-eslint": "^7.0.0"
|
36
35
|
},
|
37
36
|
"dependencies": {
|
38
|
-
"@abtasty/widget-utils": "1.16.
|
37
|
+
"@abtasty/widget-utils": "1.16.13",
|
39
38
|
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
|
40
39
|
"@rollup/plugin-commonjs": "^12.0.0",
|
41
40
|
"@rollup/plugin-node-resolve": "^8.0.1",
|
42
41
|
"babel-eslint": "^10.0.3",
|
43
42
|
"rollup-plugin-terser": "^6.1.0"
|
44
43
|
}
|
45
|
-
}
|
44
|
+
}
|
package/README.md
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
# AB-tasty Widget-Quality
|
2
|
-
|
3
|
-
This widget was generated using AB Tasty Widget CLI. You can find more infomation and documentation about widgets at https://abtasty.gitbooks.io/widget/.
|
4
|
-
|
5
|
-
## Preview your widget
|
6
|
-
|
7
|
-
Launch your widget in a new window and watch for changes.
|
8
|
-
```bash
|
9
|
-
npm start
|
10
|
-
```
|
11
|
-
|
12
|
-
## Main files
|
13
|
-
|
14
|
-
* `main.js`
|
15
|
-
Main source code of your widget
|
16
|
-
* `form.js`
|
17
|
-
Configuration form for your widget
|
18
|
-
|
19
|
-
You can specify each file location in the `package.json` like this:
|
20
|
-
```json
|
21
|
-
"main": "dist/main.js",
|
22
|
-
"form": "dist/form.js",
|
23
|
-
```
|
24
|
-
|
25
|
-
## Add your widget to AB Tasty
|
26
|
-
|
27
|
-
1. First, you'll need to have your widget on NPM:
|
28
|
-
* Create a minified bundle with `npm run build`
|
29
|
-
* Bump the version of your widget ([using semver](http://semver.org/)) with `npm version [patch|minor|major]`
|
30
|
-
* Publish it to NPM: `npm publish`
|
31
|
-
2. Once your widget is on NPM, you can now add it on AB Tasty at https://marketplace.abtasty.com/publish.
|