Skip to content

Commit

Permalink
Remove minified js from bower
Browse files Browse the repository at this point in the history
Fixes #37
  • Loading branch information
cpettitt committed May 15, 2015
1 parent f123f16 commit 0bcc735
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 11 deletions.
5 changes: 2 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
"name": "graphlib",
"version": "1.0.2",
"version": "1.0.3",
"main": [
"dist/graphlib.core.js",
"dist/graphlib.core.min.js"
"dist/graphlib.core.js"
],
"ignore": [
".*",
Expand Down
2 changes: 1 addition & 1 deletion dist/graphlib.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -1181,6 +1181,6 @@ if (!lodash) {
module.exports = lodash;

},{"lodash":undefined}],21:[function(require,module,exports){
module.exports = '1.0.2';
module.exports = '1.0.3';

},{}]},{},[1]);
2 changes: 1 addition & 1 deletion dist/graphlib.core.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/graphlib.js
Original file line number Diff line number Diff line change
Expand Up @@ -1181,7 +1181,7 @@ if (!lodash) {
module.exports = lodash;

},{"lodash":22}],21:[function(require,module,exports){
module.exports = '1.0.2';
module.exports = '1.0.3';

},{}],22:[function(require,module,exports){
(function (global){
Expand Down
2 changes: 1 addition & 1 deletion dist/graphlib.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = '1.0.3-pre';
module.exports = '1.0.3';
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphlib",
"version": "1.0.3-pre",
"version": "1.0.3",
"description": "A directed and undirected multi-graph library",
"author": "Chris Pettitt <cpettitt@gmail.com>",
"main": "index.js",
Expand Down Expand Up @@ -35,4 +35,4 @@
"url": "https://github.com/cpettitt/graphlib.git"
},
"license": "MIT"
}
}
2 changes: 1 addition & 1 deletion src/release/make-bower.json.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var packageJson = require("../../package.json");
var template = {
name: packageJson.name,
version: packageJson.version,
main: ["dist/" + packageJson.name + ".core.js", "dist/" + packageJson.name + ".core.min.js"],
main: ["dist/" + packageJson.name + ".core.js"],
ignore: [
".*",
"README.md",
Expand Down

0 comments on commit 0bcc735

Please sign in to comment.