Skip to content

Commit 0bcc735

Browse files
committed
Remove minified js from bower
Fixes #37
1 parent f123f16 commit 0bcc735

8 files changed

Lines changed: 10 additions & 11 deletions

File tree

bower.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"name": "graphlib",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"main": [
5-
"dist/graphlib.core.js",
6-
"dist/graphlib.core.min.js"
5+
"dist/graphlib.core.js"
76
],
87
"ignore": [
98
".*",

dist/graphlib.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1181,6 +1181,6 @@ if (!lodash) {
11811181
module.exports = lodash;
11821182

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

11861186
},{}]},{},[1]);

dist/graphlib.core.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/graphlib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1181,7 +1181,7 @@ if (!lodash) {
11811181
module.exports = lodash;
11821182

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

11861186
},{}],22:[function(require,module,exports){
11871187
(function (global){

dist/graphlib.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = '1.0.3-pre';
1+
module.exports = '1.0.3';

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphlib",
3-
"version": "1.0.3-pre",
3+
"version": "1.0.3",
44
"description": "A directed and undirected multi-graph library",
55
"author": "Chris Pettitt <cpettitt@gmail.com>",
66
"main": "index.js",
@@ -35,4 +35,4 @@
3535
"url": "https://github.com/cpettitt/graphlib.git"
3636
},
3737
"license": "MIT"
38-
}
38+
}

src/release/make-bower.json.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var packageJson = require("../../package.json");
77
var template = {
88
name: packageJson.name,
99
version: packageJson.version,
10-
main: ["dist/" + packageJson.name + ".core.js", "dist/" + packageJson.name + ".core.min.js"],
10+
main: ["dist/" + packageJson.name + ".core.js"],
1111
ignore: [
1212
".*",
1313
"README.md",

0 commit comments

Comments
 (0)