Change the way of compilation and requiring

fixes #231
pull/241/head
Denis Demchenko 6 years ago
parent b94587fdbc
commit bdd75028e5

1
.gitignore vendored

@ -3,3 +3,4 @@ node_modules/
.nyc_output
coverage
dist
compiled.js

@ -20,8 +20,7 @@
"url": "http://twitter.com/lancedikson"
}
],
"main": "./dist/bowser.compiled.js",
"typings": "./typings.d.ts",
"main": "src/bowser.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lancedikson/bowser.git"

@ -9,10 +9,10 @@ module.exports = {
// and webpack starts bundling
output: {
// options related to how webpack emits results
path: path.resolve(__dirname, 'dist'), // string
path: path.resolve(__dirname, './'), // string
// the target directory for all output files
// must be an absolute path (use the Node.js path module)
filename: 'bowser.compiled.js', // string
filename: 'compiled.js', // string
// the filename template for entry chunks
library: 'bowser',
libraryTarget: 'umd', // universal module definition

Loading…
Cancel
Save