From 8e053f18decad565439ce602f9b551bead0ec029 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Wed, 12 Aug 2015 15:15:13 -0500 Subject: [PATCH] publish as ionic-framework, not ionic2 --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 10883ec08a..005e928511 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -354,7 +354,7 @@ gulp.task('publish', function(done) { ['bundle', 'sass', 'fonts', 'copy.ts', 'copy.scss'], 'transpile.common', function() { - var packageJSONContents = '{\n "name": "ionic2",\n "version": "2.0.0-alpha.1",\n "license": "Apache-2.0",\n "repository": {\n "type": "git",\n "url": "https://github.com/driftyco/ionic2.git"\n }\n}\n'; + var packageJSONContents = '{\n "name": "ionic-framework",\n "version": "2.0.0-alpha.1",\n "license": "Apache-2.0",\n "repository": {\n "type": "git",\n "url": "https://github.com/driftyco/ionic2.git"\n }\n}\n'; fs.writeFile("dist/package.json", packageJSONContents, done); } )