Skip to content

Commit af28b28

Browse files
committed
Build updates and version up
1 parent 545a586 commit af28b28

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

Gruntfile.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
module.exports = function(grunt) {
22
//Initializing the configuration object
33
grunt.initConfig({
4+
compress: {
5+
main: {
6+
options: {
7+
archive: "version.zip"
8+
},
9+
src: ["OpenNote/**/*"]
10+
}
11+
},
412
jshint: {
513
options:{
614
},
@@ -138,6 +146,7 @@ module.exports = function(grunt) {
138146
grunt.loadNpmTasks("grunt-karma");
139147
grunt.loadNpmTasks("grunt-shell");
140148
grunt.loadNpmTasks("grunt-manifest");
149+
grunt.loadNpmTasks("grunt-contrib-compress");
141150

142151
//Task definition
143152
//css

OpenNote/openNote/openNote.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ openNote.value("config", {
77
* Get current version
88
*/
99
getVersion: function(){
10-
return "17.02.00";
10+
return "17.02.01";
1111
},
1212

1313
/**

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "OpenNote",
3-
"version": "17.02.00",
3+
"version": "17.02.01",
44
"description": "",
55
"main": "Gruntfile.js",
66
"author": "Jacob Liscom",
@@ -13,6 +13,7 @@
1313
"grunt-cli": "^0.1.13",
1414
"grunt-contrib-watch": "^0.6.1",
1515
"grunt-contrib-jshint": "^1.0.0",
16+
"grunt-contrib-compress": "^1.1.1",
1617
"grunt-karma": "^0.8.3",
1718
"phantomjs": "^1.9.7-5",
1819
"karma-phantomjs-launcher": "^0.1.4",

0 commit comments

Comments
 (0)