Skip to content

Commit

Permalink
Merged release/0.0.4 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinGot committed Dec 18, 2016
2 parents e2ff4d6 + 8fe9c04 commit 4f7cbb7
Show file tree
Hide file tree
Showing 6 changed files with 1,927 additions and 20 deletions.
7 changes: 7 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
!._*

test/
docs/
assets/

yarn.lock
33 changes: 21 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,43 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## 0.0.3
## Unreleased

### Fixed

- **sonar**: path to rules files from `.sreporterrc` were not good from [@ValentinGot]
- **sonar**: path to tests folder were not good from [@ValentinGot]
- **npm**: include `templates` folder in generated npm package (Closes [#2](https://github.com/groupe-sii/generator-webpack-angular/issues/2)) from [@ValentinGot]
- **npm**: ._* files where globally ignored by npm (Closes [#2](https://github.com/groupe-sii/generator-webpack-angular/issues/2)) from [@ValentinGot]

## 0.0.3 - 2016-12-09

### Fixed

- missing package version
- **README**: add npm package version

## 0.0.2
## 0.0.2 - 2016-12-09

### Fixed

- remove npm organization from [@ValentinGot]

## 0.0.1
## 0.0.1 - 2016-12-09

### Added

- **css-preprocessors**: which CSS preprocessor do you want? from [@aguele] & [@jledentu]
- **resource**: would you like to use a REST resource library? from [@vgo]
- **environments**: management application environments from [@vgo]
- **angular-translate**: angular-translate (18n for your Angular app, made easy!) from [@vgo]
- **resource**: would you like to use a REST resource library? from [@ValentinGot]
- **environments**: management application environments from [@ValentinGot]
- **angular-translate**: angular-translate (18n for your Angular app, made easy!) from [@ValentinGot]
- **ui-router**: use [AngularUI Router](https://github.com/angular-ui/ui-router) by default from [@jledentu]
- **ui-frameworks**: Which UI framework do you want? from [@vgo]
- **linting**: Add ESLint, HTMLHint, SCSSLint & CSSLint support from [@vgo]
- **package-manager**: Let's you choose between **npm** or **Yarn** package manager from [@vgo]
- **postcss**: Add PostCSS treatments from [@vgo]
- **ui-frameworks**: Which UI framework do you want? from [@ValentinGot]
- **linting**: Add ESLint, HTMLHint, SCSSLint & CSSLint support from [@ValentinGot]
- **package-manager**: Let's you choose between **npm** or **Yarn** package manager from [@ValentinGot]
- **postcss**: Add PostCSS treatments from [@ValentinGot]
- **debug**: Disable the [debug info](https://docs.angularjs.org/api/ng/provider/$compileProvider#debugInfoEnabled) in production environement from [@ole]
- **sonar**: Generate linters reporters for the [SonarQube](https://github.com/groupe-sii/sonar-web-frontend-plugin) plugin from [@vgo]
- **sonar**: Generate linters reporters for the [SonarQube](https://github.com/groupe-sii/sonar-web-frontend-plugin) plugin from [@ValentinGot]
- **json-server**: Allows you to easily create a RESTFull API for your application from [@ole]
- **application name**: Let's you choose the name of your application from [@ole]
- **documentation**: Generate documentation with dgeni from [@ole]
Expand All @@ -40,4 +49,4 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
[@aguele]: https://github.com/aguele
[@jledentu]: https://github.com/jledentu
[@ole]: https://github.com/liollury
[@vgo]: https://github.com/ValentinGot
[@ValentinGot]: https://github.com/ValentinGot
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-webpack-angular",
"version": "0.0.3",
"version": "0.0.4",
"description": "Yeoman generator for creating AngularJS apps with Webpack",
"keywords": [
"yeoman-generator",
Expand All @@ -14,9 +14,6 @@
"Valentin Got <[email protected]>",
"Olivier Le Lay <[email protected]>"
],
"files": [
"generators/app"
],
"main": "generators/app/index.js",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions templates/app/_.sreporterrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"eslint": {
"src": "src/**/*.js",
"report": "reports/sonar/eslint.json",
"rulesFile": "src/.eslintrc"
"rulesFile": ".eslintrc"
},
"eslintangular": {
"src": "src/**/*.js",
"report": "reports/sonar/eslint-angular.json",
"rulesFile": "src/.eslintrc"
"rulesFile": ".eslintrc"
},
"htmlhint": {
"src": "src/**/*.html",
Expand All @@ -26,7 +26,7 @@
"sass-to-scsslint": {
"src": "src/**/*.s+(a|c)ss",
"report": "reports/sonar/sass-to-scsslint.json",
"rulesFile": "src/.sass-lint.yml"
"rulesFile": ".sass-lint.yml"
}
<% } -%>
}
2 changes: 1 addition & 1 deletion templates/app/_sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sonar.sources=src/app,src/public,src/styles
sonar.sourceEncoding=UTF-8

sonar.exclusions=node_modules/**/*,reports/**/*
sonar.tests=tests
sonar.tests=test

sonar.sii.quality.html.report.path=reports/sonar/htmlhint.json
<% if (cssPreprocessor === 'css') { -%>
Expand Down
Loading

0 comments on commit 4f7cbb7

Please sign in to comment.