Skip to content

Commit

Permalink
Increment version to 0.4.0 and remove postinstall build step
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeezley committed Mar 25, 2015
1 parent b6961ce commit aa77a2c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ script:
- git submodule init
- git submodule update
- npm install
- grunt docs
- grunt default docs
- mkdir _build
- cd _build
- cmake ..
Expand Down
8 changes: 2 additions & 6 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,8 @@ module.exports = function (grunt) {

grunt.registerTask('library', [
'template',
'copy:geo',
'copy:vgl',
'concat:geojs',
'uglify:geojs'
]);
Expand All @@ -423,14 +425,8 @@ module.exports = function (grunt) {
'uglify:ext'
]);

grunt.registerTask('dev', [
'copy:geo',
'copy:vgl'
]);

grunt.registerTask('default', [
'init',
'dev',
'library',
'examples'
]);
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "geojs",
"version": "0.2.1",
"version": "0.4.0",
"description": "JavaScript Geo visualization and Analysis Library",
"homepage": "https://github.com/OpenGeoscience/geojs",
"main": "geo.js",
Expand Down
3 changes: 2 additions & 1 deletion docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ vgl submodule. ::
Building the source
-------------------

Inside the new ``geojs`` directory, you can simply run the following command to
Inside the new ``geojs`` directory, you can simply run the following commands to
install all dependent javascript libraries and bundle together everything that
is needed. ::

npm install
grunt

Compiled javascript libraries will be named ``geo.min.js`` and ``geo.ext.min.js`` in ``dist/built``.
The first file contains geojs and vgl bundled together. The second file contains all
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "geojs",
"version": "0.2.1",
"version": "0.4.0",
"description": "JavaScript Geo visualization and Analysis Library",
"homepage": "https://github.com/OpenGeoscience/geojs",
"license": "BSD-3-Clause",
Expand Down Expand Up @@ -34,7 +34,7 @@
"phantomjs": "~1.9"
},
"scripts": {
"postinstall": "./node_modules/.bin/bower install && ./node_modules/.bin/grunt library"
"postinstall": "./node_modules/.bin/bower install"
},
"keywords": [
"map",
Expand Down

0 comments on commit aa77a2c

Please sign in to comment.