Skip to content

Commit 4f7cbb7

Browse files
committed
Merged release/0.0.4 into master
2 parents e2ff4d6 + 8fe9c04 commit 4f7cbb7

File tree

6 files changed

+1927
-20
lines changed

6 files changed

+1927
-20
lines changed

.npmignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
!._*
2+
3+
test/
4+
docs/
5+
assets/
6+
7+
yarn.lock

CHANGELOG.md

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,34 +4,43 @@ All notable changes to this project will be documented in this file.
44

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

7-
## 0.0.3
7+
## Unreleased
8+
9+
### Fixed
10+
11+
- **sonar**: path to rules files from `.sreporterrc` were not good from [@ValentinGot]
12+
- **sonar**: path to tests folder were not good from [@ValentinGot]
13+
- **npm**: include `templates` folder in generated npm package (Closes [#2](https://github.com/groupe-sii/generator-webpack-angular/issues/2)) from [@ValentinGot]
14+
- **npm**: ._* files where globally ignored by npm (Closes [#2](https://github.com/groupe-sii/generator-webpack-angular/issues/2)) from [@ValentinGot]
15+
16+
## 0.0.3 - 2016-12-09
817

918
### Fixed
1019

1120
- missing package version
1221
- **README**: add npm package version
1322

14-
## 0.0.2
23+
## 0.0.2 - 2016-12-09
1524

1625
### Fixed
1726

1827
- remove npm organization from [@ValentinGot]
1928

20-
## 0.0.1
29+
## 0.0.1 - 2016-12-09
2130

2231
### Added
2332

2433
- **css-preprocessors**: which CSS preprocessor do you want? from [@aguele] & [@jledentu]
25-
- **resource**: would you like to use a REST resource library? from [@vgo]
26-
- **environments**: management application environments from [@vgo]
27-
- **angular-translate**: angular-translate (18n for your Angular app, made easy!) from [@vgo]
34+
- **resource**: would you like to use a REST resource library? from [@ValentinGot]
35+
- **environments**: management application environments from [@ValentinGot]
36+
- **angular-translate**: angular-translate (18n for your Angular app, made easy!) from [@ValentinGot]
2837
- **ui-router**: use [AngularUI Router](https://github.com/angular-ui/ui-router) by default from [@jledentu]
29-
- **ui-frameworks**: Which UI framework do you want? from [@vgo]
30-
- **linting**: Add ESLint, HTMLHint, SCSSLint & CSSLint support from [@vgo]
31-
- **package-manager**: Let's you choose between **npm** or **Yarn** package manager from [@vgo]
32-
- **postcss**: Add PostCSS treatments from [@vgo]
38+
- **ui-frameworks**: Which UI framework do you want? from [@ValentinGot]
39+
- **linting**: Add ESLint, HTMLHint, SCSSLint & CSSLint support from [@ValentinGot]
40+
- **package-manager**: Let's you choose between **npm** or **Yarn** package manager from [@ValentinGot]
41+
- **postcss**: Add PostCSS treatments from [@ValentinGot]
3342
- **debug**: Disable the [debug info](https://docs.angularjs.org/api/ng/provider/$compileProvider#debugInfoEnabled) in production environement from [@ole]
34-
- **sonar**: Generate linters reporters for the [SonarQube](https://github.com/groupe-sii/sonar-web-frontend-plugin) plugin from [@vgo]
43+
- **sonar**: Generate linters reporters for the [SonarQube](https://github.com/groupe-sii/sonar-web-frontend-plugin) plugin from [@ValentinGot]
3544
- **json-server**: Allows you to easily create a RESTFull API for your application from [@ole]
3645
- **application name**: Let's you choose the name of your application from [@ole]
3746
- **documentation**: Generate documentation with dgeni from [@ole]
@@ -40,4 +49,4 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
4049
[@aguele]: https://github.com/aguele
4150
[@jledentu]: https://github.com/jledentu
4251
[@ole]: https://github.com/liollury
43-
[@vgo]: https://github.com/ValentinGot
52+
[@ValentinGot]: https://github.com/ValentinGot

package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generator-webpack-angular",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "Yeoman generator for creating AngularJS apps with Webpack",
55
"keywords": [
66
"yeoman-generator",
@@ -14,9 +14,6 @@
1414
"Valentin Got <[email protected]>",
1515
"Olivier Le Lay <[email protected]>"
1616
],
17-
"files": [
18-
"generators/app"
19-
],
2017
"main": "generators/app/index.js",
2118
"repository": {
2219
"type": "git",

templates/app/_.sreporterrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"eslint": {
44
"src": "src/**/*.js",
55
"report": "reports/sonar/eslint.json",
6-
"rulesFile": "src/.eslintrc"
6+
"rulesFile": ".eslintrc"
77
},
88
"eslintangular": {
99
"src": "src/**/*.js",
1010
"report": "reports/sonar/eslint-angular.json",
11-
"rulesFile": "src/.eslintrc"
11+
"rulesFile": ".eslintrc"
1212
},
1313
"htmlhint": {
1414
"src": "src/**/*.html",
@@ -26,7 +26,7 @@
2626
"sass-to-scsslint": {
2727
"src": "src/**/*.s+(a|c)ss",
2828
"report": "reports/sonar/sass-to-scsslint.json",
29-
"rulesFile": "src/.sass-lint.yml"
29+
"rulesFile": ".sass-lint.yml"
3030
}
3131
<% } -%>
3232
}

templates/app/_sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sonar.sources=src/app,src/public,src/styles
66
sonar.sourceEncoding=UTF-8
77

88
sonar.exclusions=node_modules/**/*,reports/**/*
9-
sonar.tests=tests
9+
sonar.tests=test
1010

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

0 commit comments

Comments
 (0)