We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4fb3dd commit ae6594fCopy full SHA for ae6594f
package.json
@@ -8,6 +8,7 @@
8
"README.md"
9
],
10
"scripts": {
11
+ "prepublishOnly": "yarn lint && yarn test && yarn build",
12
"build": "rollup -c",
13
"lint": "eslint ./",
14
"test": "jest"
rollup.config.js
@@ -13,7 +13,7 @@ export default {
globals: {
react: 'React',
15
'react-tv': 'react-tv',
16
- }
+ },
17
},
18
plugins: [
19
flow(),
@@ -29,5 +29,5 @@ export default {
29
}),
30
uglify(),
31
32
- external: ['react', 'react-tv']
+ external: ['react', 'react-tv'],
33
};
0 commit comments