Skip to content

Commit

Permalink
More bower tweaking
Browse files Browse the repository at this point in the history
  • Loading branch information
cpettitt committed Oct 19, 2014
1 parent c4f53aa commit 77b11e3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 15 deletions.
3 changes: 2 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@
"index.js",
"karma*",
"lib/**",
"package.json",
"src/**",
"test/**"
],
"dependencies": {
"lodash": "2.4.1"
"lodash": "^2.4.1"
}
}
29 changes: 15 additions & 14 deletions src/release/make-bower.json.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,24 @@
// Renders the bower.json template and prints it to stdout

var template = {
name: 'graphlib',
version: require('../../package.json').version,
main: [ 'dist/graphlib.core.js', 'dist/graphlib.core.min.js' ],
name: "graphlib",
version: require("../../package.json").version,
main: [ "dist/graphlib.core.js", "dist/graphlib.core.min.js" ],
ignore: [
'.*',
'README.md',
'CHANGELOG.md',
'Makefile',
'browser.js',
'index.js',
'karma*',
'lib/**',
'src/**',
'test/**'
".*",
"README.md",
"CHANGELOG.md",
"Makefile",
"browser.js",
"index.js",
"karma*",
"lib/**",
"package.json",
"src/**",
"test/**"
],
dependencies: {
'lodash': '2.4.1'
"lodash": "^2.4.1"
}
};

Expand Down

0 comments on commit 77b11e3

Please sign in to comment.