File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,8 @@ module.exports = function(grunt) {
125
125
var packageJson = grunt . file . readJSON ( "package.json" ) ;
126
126
var versionParts = packageJson . version . split ( "-" ) ;
127
127
if ( process . env [ "RELEASE_BUILD" ] ) {
128
- packageJson . version = versionParts [ 0 ] ;
128
+ // HACK - excluded until 1.0.0 release or we refactor our project infrastructure (whichever comes first)
129
+ // packageJson.version = versionParts[0];
129
130
} else {
130
131
versionParts [ 1 ] = buildVersion ;
131
132
packageJson . version = versionParts . join ( "-" ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " nativescript" ,
3
3
"preferGlobal" : true ,
4
- "version" : " 1.0.0" ,
4
+ "version" : " 1.0.0-rc0 " ,
5
5
"author" : " Telerik <support@telerik.com>" ,
6
6
"description" : " Command-line interface for building NativeScript projects" ,
7
7
"bin" : {
You can’t perform that action at this time.
0 commit comments