Skip to content

Commit e67db11

Browse files
committed
Merge branch 'dev' into ts
# Conflicts: # gulp/build.js
2 parents 801be9a + 154b4c4 commit e67db11

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+3022
-1923
lines changed

.bowerrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
{
2-
"directory": "libraries",
3-
"cwd": "sources/"
2+
"directory": "sources/libraries"
43
}

README.md

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
Web project starter kit including tooling, best practices and project seed.
66

7-
It is based on our experience in large web projects, with architecture choices
8-
aiming for a clean, no-brainer development experience even for beginner teams.
7+
It is based on experience in large web projects, with architecture choices aiming for a clean, no-brainer development
8+
experience even for beginner teams.
99

1010
# Getting started
1111

@@ -128,7 +128,32 @@ docs | Generate jsdoc documentation from sources.
128128

129129
See the [wiki](https://github.com/thales-poles-ra/starter-kit/wiki).
130130

131-
# Credits
131+
# Licence
132132

133133
This starter kit is based on tooling from the
134134
[gulp-angular](https://github.com/Swiip/generator-gulp-angular) Yeoman generator.
135+
Portions of project generator-gulp-angular are Copyright (c) 2014 Matthieu Lux & Mehdy Dara
136+
137+
The MIT License (MIT)
138+
139+
Copyright (c) 2015 Yohan Lasorsa
140+
141+
Permission is hereby granted, free of charge, to any person obtaining a copy
142+
of this software and associated documentation files (the "Software"), to deal
143+
in the Software without restriction, including without limitation the rights
144+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
145+
copies of the Software, and to permit persons to whom the Software is
146+
furnished to do so, subject to the following conditions:
147+
148+
The above copyright notice and this permission notice shall be included in all
149+
copies or substantial portions of the Software.
150+
151+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
152+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
153+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
154+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
155+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
156+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
157+
SOFTWARE.
158+
159+
File renamed without changes.

gulp/build.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,9 @@ gulp.task('other', ['fonts'], function() {
6262
path.join(conf.paths.src, '/**/*'),
6363
path.join(conf.paths.tmp, '/**/*.{eot,svg,ttf,woff,woff2}'),
6464
path.join('!' + conf.paths.src, '/**/*.{html,css,js,ts,scss}'),
65-
path.join('!' + conf.paths.src, conf.paths.bower, '/**/*'),
65+
path.join('!' + conf.paths.bower, '/**/*'),
6666
path.join('!' + conf.paths.src, '/translations/*'),
67-
path.join('!' + conf.paths.src, '/images/*'),
68-
path.join('!' + conf.paths.src, '/bower.json')
67+
path.join('!' + conf.paths.src, '/images/*')
6968
])
7069
.pipe(fileFilter)
7170
.pipe(gulp.dest(path.join(conf.paths.dist, '/')));

gulp/tsd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var tsdJson = 'tsd.json';
1111
var tsdApi = new tsd.getAPI(tsdJson);
1212

1313
gulp.task('tsd', function() {
14-
var bower = require(path.join(process.cwd(), conf.paths.src, 'bower.json'));
14+
var bower = require(path.join(process.cwd(), 'bower.json'));
1515

1616
var dependencies = [].concat(
1717
Object.keys(bower.dependencies),

gulp/watch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ gulp.task('watch', ['inject'], function() {
1515
debounceDelay: 500
1616
};
1717

18-
gulp.watch(path.join(conf.paths.src, 'bower.json'), options, ['inject']);
18+
gulp.watch('bower.json', options, ['inject']);
1919

2020
gulp.watch([
2121
path.join(conf.paths.src, '/**/*.css'),

gulpfile.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ exports.backendProxy = [
5858
*/
5959
exports.wiredep = {
6060
exclude: [],
61-
directory: path.join(exports.paths.src, bower.directory),
62-
bowerJson: require('./' + path.join(exports.paths.src, 'bower.json'))
61+
directory: bower.directory,
62+
bowerJson: require('./bower.json')
6363
};
6464

6565
/**

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"name": "starter-kit",
33
"version": "1.0.0",
4+
"description": "Web project starter kit including tooling, best practices and project seed",
5+
"keywords": "angular, bootstrap, gulp, ui-router, ui-bootstrap, sass, typescript, jade",
6+
"license": "MIT",
7+
"author": "Yohan Lasorsa",
48
"repository": {
59
"type": "git",
610
"url": "[email protected]/thales-poles-ra/starter-kit.git"
@@ -46,7 +50,7 @@
4650
"gulp-size": "~2.0.0",
4751
"gulp-sourcemaps": "~1.6.0",
4852
"gulp-tsd": "0.0.4",
49-
"gulp-tslint": "~4.1.2",
53+
"gulp-tslint": "^4.2.1",
5054
"gulp-typescript": "~2.10.0",
5155
"gulp-uglify": "~1.5.1",
5256
"gulp-useref": "^2.1.0",
@@ -67,7 +71,7 @@
6771
"karma-ng-html2js-preprocessor": "~0.2.0",
6872
"karma-phantomjs-launcher": "~0.2.0",
6973
"lodash": "^3.10.1",
70-
"main-bower-files": "~2.9.0",
74+
"main-bower-files": "~2.11.0",
7175
"merge-stream": "~1.0.0",
7276
"phantomjs": "~1.9.18",
7377
"protractor-html-screenshot-reporter": "0.0.21",

sources/libraries/angular-animate/.bower.json

100755100644
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "angular-animate",
3-
"version": "1.4.3",
3+
"version": "1.4.8",
44
"main": "./angular-animate.js",
55
"ignore": [],
66
"dependencies": {
7-
"angular": "1.4.3"
7+
"angular": "1.4.8"
88
},
99
"homepage": "https://github.com/angular/bower-angular-animate",
10-
"_release": "1.4.3",
10+
"_release": "1.4.8",
1111
"_resolution": {
1212
"type": "version",
13-
"tag": "v1.4.3",
14-
"commit": "4ce2a76359401102d2e0146ccf69e6c060799ff8"
13+
"tag": "v1.4.8",
14+
"commit": "cc1d9740059f5e8fd43abf0e2e80695d43b3b6b1"
1515
},
16-
"_source": "git://github.com/angular/bower-angular-animate.git",
16+
"_source": "https://github.com/angular/bower-angular-animate.git",
1717
"_target": "~1.4.0",
1818
"_originalSource": "angular-animate"
1919
}

sources/libraries/angular-animate/README.md

100755100644
File mode changed.

0 commit comments

Comments
 (0)