mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-02 13:26:11 +03:00
Now properly setting version in build
This commit is contained in:
parent
d3b010d26e
commit
4e51b642ef
3 changed files with 7 additions and 7 deletions
6
grunt.js
6
grunt.js
|
@ -34,9 +34,13 @@ module.exports = function(grunt) {
|
|||
|
||||
// Project configuration.
|
||||
grunt.initConfig({
|
||||
pkg: "<json:package.json>",
|
||||
meta: {
|
||||
banner: "/**\n * @version <%= pkg.name %> <%= pkg.version %>\n */"
|
||||
},
|
||||
concat: {
|
||||
dist: {
|
||||
src: sources,
|
||||
src: [ "<banner>" ].concat(sources),
|
||||
dest: distribution
|
||||
}
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "openseadragon",
|
||||
"version": "0.9.114",
|
||||
"name": "OpenSeadragon",
|
||||
"version": "0.9.120",
|
||||
"description": "Provides a smooth, zoomable user interface for HTML/Javascript.",
|
||||
"dependencies": {
|
||||
"grunt": "0.3.17",
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
/*globals OpenSeadragon*/
|
||||
|
||||
/**
|
||||
* @version OpenSeadragon @VERSION@
|
||||
*
|
||||
* @fileOverview
|
||||
* <h2>
|
||||
* <strong>
|
||||
|
|
Loading…
Add table
Reference in a new issue