Skip to content
This repository was archived by the owner on Jan 22, 2024. It is now read-only.

Commit a9834f6

Browse files
committed
updated readme
1 parent 3793799 commit a9834f6

3 files changed

Lines changed: 35 additions & 33 deletions

File tree

Gruntfile.js

Lines changed: 28 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,28 @@
1-
module.exports = function( grunt )
2-
{
3-
"use strict";
4-
var exec = require( "child_process" ).exec,
5-
fs = require( "fs" );
6-
grunt.initConfig( {
7-
compress: {
8-
main: {
9-
options: {
10-
archive: "./build/digexp-toolkit.zip"
11-
},
12-
files: [
13-
{
14-
expand: true,
15-
cwd: ".",
16-
src: [ "install.cmd", "install.sh", "readme.md", "wcm-design.tar.gz", "dashboard.tar.gz", "LICENSE", "NOTICE" ],
17-
dest: "/",
18-
filter: "isFile"
19-
}
20-
]
21-
}
22-
}
23-
} );
24-
grunt.loadNpmTasks( "grunt-contrib-compress" );
25-
grunt.registerTask( "default", [] );
26-
grunt.registerTask( "build", [ "compress:main", "_build" ] );
27-
/**
28-
* Builds the app
29-
*/
30-
grunt.registerTask( "_build", function() {
31-
} );
32-
};
1+
module.exports = function(grunt) {
2+
"use strict";
3+
var exec = require("child_process").exec, fs = require("fs");
4+
grunt.initConfig({
5+
compress : {
6+
main : {
7+
options : {
8+
archive : "./build/digexp-toolkit.zip"
9+
},
10+
files : [{
11+
expand : true,
12+
cwd : ".",
13+
src : ["install.cmd", "install.sh", "readme.md", "wcm-design.tar.gz", "dashboard.tar.gz", "sp-server.tar.gz", "LICENSE", "NOTICE"],
14+
dest : "/",
15+
filter : "isFile"
16+
}]
17+
}
18+
}
19+
});
20+
grunt.loadNpmTasks("grunt-contrib-compress");
21+
grunt.registerTask("default", []);
22+
grunt.registerTask("build", ["compress:main", "_build"]);
23+
/**
24+
* Builds the app
25+
*/
26+
grunt.registerTask("_build", function() {
27+
});
28+
};

developer_readme.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $ npm install -g gulp
88
```
99
Then install the script's dependencies:
1010
```
11-
$ npm install gulp gulp-tar gulp-gzip map-stream
11+
$ npm install
1212
```
1313
Then run
1414
```
@@ -42,3 +42,9 @@ Also make sure that the gulp repackages the tarballs after
4242
pulling any changes from the git repo. The tarball's will not be committed
4343
after running `$ git pull` but the updated tarballs will be included in the next commit.
4444

45+
To create the release zip install Grunt client
46+
47+
npm install -g grunt-cli
48+
49+
then run grunt build to generate the zip in the build directory. When you are releasing copy the zip to the release directory
50+

release/digexp-toolkit.zip

1.06 KB
Binary file not shown.

0 commit comments

Comments
 (0)