Skip to content

Commit

Permalink
Changed the build definition
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerSep committed Feb 24, 2017
1 parent 3b18150 commit f52a3ae
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
</head>
<body>
Ejemplo
<script type="text/javascript" src="./dist/bundle.js"></script>
<script type="text/javascript" src="./dist/index.umd.js"></script>
</body>
</html>
13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
{
"name": "kafkaesque-ui",
"description": "A kafka inspired message system for event-driven front-end applications.",
"version": "1.0.0",
"main": "dist/index.js",
"version": "1.0.1",
"main": "dist/index.umd.js",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server"
"start": "webpack-dev-server",
"build": "npm-run-all --parallel build:*",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"prebuild": "rimraf dist"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,6 +36,8 @@
"rx": "^4.1.0"
},
"devDependencies": {
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"source-map-loader": "^0.1.6",
"ts-loader": "^2.0.1",
"typescript": "^2.1.6",
Expand Down

0 comments on commit f52a3ae

Please sign in to comment.