Merge pull request #1258 from dlong500/installfromgithub

Compatibility with direct npm/yarn installation from Github forks/branches
This commit is contained in:
Ian Gilman 2017-07-20 10:19:09 -07:00 committed by GitHub
commit 3d8a03c177
3 changed files with 15 additions and 2 deletions

View File

@ -75,3 +75,12 @@ You can also get a report of the tests' code coverage:
The report shows up at `coverage/html/index.html` viewable in a browser.
### Installing from forked Github repo/branch
This project is now compatible with direct installation of forked Github repos/branches via npm/yarn (possible because of the new [prepare](https://docs.npmjs.com/misc/scripts) command). This enables quick testing of a bugfix or feature addition via a forked repo. In order to do this:
1. Install the Grunt command line runner (if you haven't already); on the command line, run `npm install -g grunt-cli` (or `yarn global add grunt-cli`)
1. Remove any currently installed openseadragon package via `npm uninstall openseadragon` or `yarn remove openseadragon`
1. Add the specific forked repo/branch by running `npm install git://github.com/username/openseadragon.git#branch-name` or `yarn add git://github.com/username/openseadragon.git#branch-name`. Make sure to replace username and branch-name with proper targets.
During installation, the package should be correctly built via grunt and can then be used via `import Openseadragon from 'openseadragon'` or `var Openseadragon = require('openseadragon')` statements as if the official package were installed.

View File

@ -194,8 +194,12 @@ module.exports = function(grunt) {
target: sources
},
"git-describe": {
"options": {
failOnError: false
},
build: {}
}
},
gitInfo: "unknown"
});
// ----------

View File

@ -30,6 +30,6 @@
},
"scripts": {
"test": "grunt test",
"prepublish": "grunt build"
"prepare": "grunt build"
}
}