@abtasty/popin-video 1.1.7 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +44 -0
- package/dist/form.js +1 -1
- package/dist/main.js +1 -1
- package/package.json +20 -23
package/README.md
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
# Popin Video
|
2
|
+
|
3
|
+
A simple popin displaying video and content
|
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
|
+
* `icon.png`
|
19
|
+
Icon for your widget (recommended size: 200x200px)
|
20
|
+
|
21
|
+
You can specify each file location in the `package.json` like this:
|
22
|
+
```json
|
23
|
+
"main": "dist/main.js",
|
24
|
+
"form": "dist/form.js",
|
25
|
+
"icon": "icon.png",
|
26
|
+
```
|
27
|
+
|
28
|
+
## Included
|
29
|
+
|
30
|
+
* [Rollup.js](https://rollupjs.org/) module bundler (like Webpack but smaller and faster).
|
31
|
+
* ES6 support using [Babel](https://babeljs.io/).
|
32
|
+
* JavaScript Linting with [ESLint](http://eslint.org/) and [Airbnb style](https://github.com/airbnb/javascript).
|
33
|
+
* JavaScript minified with [UglifyJS](https://github.com/mishoo/UglifyJS2).
|
34
|
+
* [Prettier](https://prettier.io/) to format code.
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
## Add your widget to AB Tasty
|
39
|
+
|
40
|
+
1. First, you'll need to have your widget on NPM:
|
41
|
+
* Create a minified bundle with `npm run build`
|
42
|
+
* Bump the version of your widget ([using semver](http://semver.org/)) with `npm version [patch|minor|major]`
|
43
|
+
* Publish it to NPM: `npm publish`
|
44
|
+
2. Once your widget is on NPM, you can now add it on AB Tasty at https://marketplace.abtasty.com/publish.
|