Skip to content

Commit f1fccbb

Browse files
author
Matt Karl
committed
Updated to the new grunt plugins
1 parent 204d7ce commit f1fccbb

File tree

13 files changed

+35
-21
lines changed

13 files changed

+35
-21
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SpringRollStudio",
3-
"version": "0.0.2",
3+
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
66
"jqueryui": "*",

build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SpringRollStudio",
3-
"version": "0.0.2",
3+
"version": "0.1.0",
44
"main": [
55
"components/node-webkit-app/src/utils/UpdateChecker.js",
66
"components/node-webkit-app/src/NodeWebkitApp.js",

deploy/assets/templates/default/Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = function(grunt)
88
grunt.initConfig(_.extend(
99

1010
// Setup the default game tasks
11-
require('grunt-game-builder')(grunt, { autoInit: false }),
11+
require('grunt-springroll')(grunt, { autoInit: false }),
1212

1313
// Setup the current project tasks
1414
require('load-grunt-config')(grunt,
@@ -22,7 +22,7 @@ module.exports = function(grunt)
2222
{
2323
pattern: [
2424
'grunt-*',
25-
'!grunt-game-builder'
25+
'!grunt-springroll'
2626
]
2727
}
2828
})

deploy/assets/templates/default/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": true,
33
"dependencies": {
44
"grunt": "*",
5-
"grunt-game-builder": "*",
5+
"grunt-springroll": "*",
66
"load-grunt-config": "*",
77
"lodash": "*"
88
}

deploy/assets/templates/default/springroll-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name" : "Default",
33
"id" : "io.springroll.default",
4-
"version" : "1.0.0",
4+
"version" : "1.1.0",
55
"rename" : {
66
"gitignore" : ".gitignore",
77
"bowerrc" : ".bowerrc"

deploy/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
<head>
44
<meta charset="utf-8">
55
<title>SpringRoll Studio</title>
6-
<link href="assets/css/libraries.css?v=0.0.2" rel="stylesheet">
7-
<link href="assets/css/main.css?v=0.0.2" rel="stylesheet">
8-
<script src="assets/js/libraries.js?v=0.0.2"></script>
9-
<script src="assets/js/main.js?v=0.0.2"></script>
6+
<link href="assets/css/libraries.css?v=0.1.0" rel="stylesheet">
7+
<link href="assets/css/main.css?v=0.1.0" rel="stylesheet">
8+
<script src="assets/js/libraries.js?v=0.1.0"></script>
9+
<script src="assets/js/main.js?v=0.1.0"></script>
1010
</head>
1111
<body>
1212
<div class="modules btn-group-vertical">

deploy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "SpringRollStudio",
33
"description": "Application for SpringRoll projects",
4-
"version": "0.0.2",
4+
"version": "0.1.0",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/SpringRoll/SpringRollStudio"

installer/win.nsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
!define DESCRIPTION "Application for SpringRoll projects"
44
# These three must be integers
55
!define VERSIONMAJOR 0
6-
!define VERSIONMINOR 0
7-
!define VERSIONBUILD 2
6+
!define VERSIONMINOR 1
7+
!define VERSIONBUILD 0
88
# These will be displayed by the "Click here for support information" link in "Add/Remove Programs"
99
# It is possible to use "mailto:" links in here to open the email client
1010
!define HELPURL "https://github.com/SpringRoll/SpringRollStudio/issues"

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"private": true,
44
"dependencies": {
55
"grunt": "~0.4.5",
6-
"grunt-game-builder": "~0.3.1",
7-
"load-grunt-tasks": "*",
6+
"grunt-exec": "~0.4.6",
7+
"grunt-game-builder": "^0.3.6",
88
"grunt-node-webkit-builder": "~0.2.2",
9-
"lodash": "~2.4.1",
109
"load-grunt-config": "~0.13.1",
11-
"grunt-exec": "~0.4.6"
10+
"load-grunt-tasks": "*",
11+
"lodash": "~2.4.1"
1212
}
1313
}

0 commit comments

Comments
 (0)