From 43f8b9b23641b36c560680f6a377430bb900116b Mon Sep 17 00:00:00 2001 From: Damien Pellier Date: Thu, 16 Jul 2015 16:22:01 +0200 Subject: [PATCH] New architecture tasks --- app/templates/.jshintrc | 1 - app/templates/.scss-lint.yml | 2 +- app/templates/gitignore | 9 +++++---- app/templates/package.json | 14 ++++++++------ package.json | 8 ++++---- 5 files changed, 18 insertions(+), 16 deletions(-) diff --git a/app/templates/.jshintrc b/app/templates/.jshintrc index 9f8c226..60d4943 100644 --- a/app/templates/.jshintrc +++ b/app/templates/.jshintrc @@ -26,7 +26,6 @@ "browser": true, "jquery": true, "globals": { - "app": true, "_gaq": true, "_gat": true, "moment": true diff --git a/app/templates/.scss-lint.yml b/app/templates/.scss-lint.yml index ec6d57a..9789092 100644 --- a/app/templates/.scss-lint.yml +++ b/app/templates/.scss-lint.yml @@ -66,7 +66,7 @@ linters: max_depth: 10 #TODO reduce this to 4 PlaceholderInExtend: - enabled: true + enabled: false PropertySortOrder: enabled: true diff --git a/app/templates/gitignore b/app/templates/gitignore index a130e58..31fd1b0 100644 --- a/app/templates/gitignore +++ b/app/templates/gitignore @@ -1,11 +1,12 @@ .bridge-apikey.json node_modules -_output -_build -*.log +npm-debug.log .sass-cache Gruntfile.js package.json .jshintrc .scss-lint.yml -bower_components +src/bower_components +dist +.tmp +**/.DS_Store diff --git a/app/templates/package.json b/app/templates/package.json index 8b8d335..0000ade 100644 --- a/app/templates/package.json +++ b/app/templates/package.json @@ -1,20 +1,22 @@ { "name": "grunt-lf-bridge-template", "private": true, - "version": "3.0.0", + "version": "<%= pkg.version %>", "description": "Grunt tasks for Bridge template development", - "homepage": "https://github.com/Leadformance/generator-bridge-template", - "bugs": "https://github.com/Leadformance/generator-bridge-template/issues", + "homepage": "<%= pkg.homepage %>", + "bugs": "<%= pkg.homepage %>/issues", "author": { - "name": "Damien Pellier", - "email": "", - "url": "https://github.com/dpellier" + "name": "<%= pkg.author.name %>", + "email": "<%= pkg.author.email %>", + "url": "<%= pkg.author.url %>" }, "devDependencies": { "autoprefixer-core": "~5.2.0", "babelify": "^6.1.2", + "bower": "^1.4.1", "grunt": "~0.4.3", "grunt-browserify": "^3.8.0", + "grunt-cli": "^0.1.13", "grunt-contrib-clean": "~0.5.0", "grunt-contrib-compress": "^0.13.0", "grunt-contrib-concat": "^0.5.1", diff --git a/package.json b/package.json index 6e1674b..9c4241a 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,14 @@ { "name": "generator-bridge-template", "private": true, - "version": "2.0.6", + "version": "3.0.0", "description": "A Yeoman generator and Grunt tasks for Bridge template development", "homepage": "https://github.com/Leadformance/generator-bridge-template", "bugs": "https://github.com/Leadformance/generator-bridge-template/issues", "author": { - "name": "Julien M.", - "email": "", - "url": "https://github.com/julienma" + "name": "Damien Pellier", + "email": "dpellier@leadformance.com", + "url": "https://github.com/dpellier" }, "main": "app/index.js", "repository": {