Skip to content

Commit

Permalink
[grunt] fixed path
Browse files Browse the repository at this point in the history
  • Loading branch information
Grovkillen committed Feb 21, 2020
1 parent 0200363 commit 9957ccc
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ module.exports = function(grunt) {
packageJSON = JSON.parse(packageJSON);
packageJSON.version = guiEasy.major + '.' + guiEasy.minor + '.' + guiEasy.minimal;
packageJSON.versionName = version;
packageJSON.main["index.html.gz"] = "build/main/" + version + "/";
packageJSON.main = "build/" + version + "/main/index.html.gz";
packageJSON.timestamp = Date.now();
grunt.file.write('package.json',
JSON.stringify(packageJSON,null,2)
Expand Down
6 changes: 2 additions & 4 deletions build/0.0.nightly.2/info/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
{
"name": "gui-easy",
"timestamp": 1582321018895,
"timestamp": 1582321622455,
"version": "0.0.2",
"versionName": "0.0.nightly.2",
"author": "Jimmy 'Grovkillen' Westberg <jimmy@grovkillen.com> (https://grovkillen.com)",
"description": "Front End for ESP Easy",
"main": {
"index.html.gz": "build/main/0.0.nightly.2/"
},
"main": "build/0.0.nightly.2/main/index.html.gz",
"repository": {
"type": "git",
"url": "git+https://github.com/letscontrolit/GUIEasy.git"
Expand Down
2 changes: 1 addition & 1 deletion build/0.0.nightly.2/info/release.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
timestamp:1582321018895
timestamp:1582321622455
major:0
minor:0
minimal:2
Expand Down
Binary file modified build/0.0.nightly.2/src-0.0.nightly.2.zip
Binary file not shown.
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
{
"name": "gui-easy",
"timestamp": 1582321018895,
"timestamp": 1582321622455,
"version": "0.0.2",
"versionName": "0.0.nightly.2",
"author": "Jimmy 'Grovkillen' Westberg <jimmy@grovkillen.com> (https://grovkillen.com)",
"description": "Front End for ESP Easy",
"main": {
"index.html.gz": "build/main/0.0.nightly.2/"
},
"main": "build/0.0.nightly.2/main/index.html.gz",
"repository": {
"type": "git",
"url": "git+https://github.com/letscontrolit/GUIEasy.git"
Expand Down

0 comments on commit 9957ccc

Please sign in to comment.