Skip to content

Commit

Permalink
[grunt] put the info in a subdirectory
Browse files Browse the repository at this point in the history
  • Loading branch information
Grovkillen committed Jan 4, 2020
1 parent b04354d commit 6a66cd6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
12 changes: 9 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,15 +177,21 @@ module.exports = function(grunt) {
files:
{
src: ['**'],
dest: 'build/temp/source_files.json',
dest: 'build/temp/info/source_files.json',
cwd: 'src/'
}
},
// copy release info
copy: {
releaseInfo : {
src: 'release.txt',
dest: 'build/temp/',
dest: 'build/temp/info/',
flatten: true,
filter: 'isFile',
},
package : {
src: 'package.json',
dest: 'build/temp/info/',
flatten: true,
filter: 'isFile',
}
Expand Down Expand Up @@ -256,7 +262,7 @@ module.exports = function(grunt) {
'compress',
'clean:tempFiles',
'folder_list',
'copy:releaseInfo',
'copy',
'rename',
'clean:noDash',
'clean:releaseInfo',
Expand Down
1 change: 0 additions & 1 deletion build/0.0.nightly.1/source_files.json

This file was deleted.

Binary file modified build/0.0.nightly.1/src-0.0.nightly.1.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gui-easy",
"date": 1578173076803,
"date": 1578173372022,
"version": "0.0.1",
"author": "Jimmy 'Grovkillen' Westberg <jimmy@grovkillen.com> (https://grovkillen.com)",
"license": "GPL-3.0-or-later",
Expand Down

0 comments on commit 6a66cd6

Please sign in to comment.