Added Bower configuration and Gruntfile#10
Open
bennycode wants to merge 12 commits intojamesfoster:masterfrom
Open
Added Bower configuration and Gruntfile#10bennycode wants to merge 12 commits intojamesfoster:masterfrom
bennycode wants to merge 12 commits intojamesfoster:masterfrom
Conversation
…ource version including source-code mapping files.
Open
|
Awesome! |
bower.json
Outdated
|
Please update your docs because bower complains about camel case notation of package name. It will produce an error Instead use: Also see http://stackoverflow.com/questions/25387908/unable-to-register-bower-package-einvformat |
Author
|
@bennidi - Thanks for the info! I updated the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hello,
as promised here are the changes to have your "observableDictionary" as a Bower dependency. This commit includes a Bower package description (bower.json) and a Grunt configuration (package.json & Gruntfile.js).
All you need to do now is installing "node.js" (http://nodejs.org/). If you have "node" then you can install Grunt via the command-line with:
npm install -g grunt-cliand Bower withnpm install -g bower.If you have grunt installed then you should go to your project via command-line and execute:
These two commands will resolve external dependencies (like Knockout). You can then open the
index.htmlfile to see if the needed dependencies have been resolved. :)If you want to create a package for distribution of your plugin, then just run:
Grunt will package your plugin to the "dist" folder including the source files, a minified version and a source-code mapping file. :) If you are happy with that, then just create a new Version of your plugin on GitHub and release it as a Bower package, using:
Feel free to contact me if there are any problems!
More information: