Skip to content

Commit

Permalink
fix: package references
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmichalina committed Jan 14, 2019
1 parent 7f96459 commit e7ae3fd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"version": "0.0.0-development",
"description": "Interact with ONVIF cameras and devices using RXJS",
"author": "Patrick Michalina <patrickmichalina@mac.com>",
"main": "dist/onvif-rx-cjs.js",
"module": "dist/onvif-rx-esm.js",
"browser": "dist/onvif-rx-umd.js",
"types": "dist/index.d.ts",
"main": "onvif-rx-cjs.js",
"module": "onvif-rx-esm.js",
"browser": "onvif-rx-umd.js",
"types": "index.d.ts",
"license": "MIT",
"keywords": [
"onvif",
Expand Down
6 changes: 3 additions & 3 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default [
plugins,
output: [
{
file: pkg.browser,
file: `dist/${pkg.browser}`,
format: 'umd',
name: 'onvif',
globals: {
Expand All @@ -35,11 +35,11 @@ export default [
plugins,
output: [
{
file: pkg.main,
file: `dist/${pkg.main}`,
format: 'cjs'
},
{
file: pkg.module,
file: `dist/${pkg.module}`,
format: 'es'
}
]
Expand Down

0 comments on commit e7ae3fd

Please sign in to comment.