Skip to content

Commit 5b75ae9

Browse files
author
sternbach
committed
update to a new structure based on angular-cli project
1 parent f6eb7fe commit 5b75ae9

File tree

101 files changed

+16773
-1501
lines changed

Some content is hidden

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

101 files changed

+16773
-1501
lines changed

.editorconfig

100644100755
Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
1+
# Editor configuration, see http://editorconfig.org
12
root = true
23

34
[*]
4-
indent_style = space
5-
indent_size = 4
6-
end_of_line = lf
75
charset = utf-8
8-
trim_trailing_whitespace = true
9-
insert_final_newline = true
10-
11-
[*.{js,ts,json,css,html}]
6+
indent_style = space
127
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
1310

1411
[*.md]
12+
max_line_length = off
1513
trim_trailing_whitespace = false
16-
17-
[Makefile]
18-
indent_style = tab

.firebaserc

Lines changed: 0 additions & 5 deletions
This file was deleted.

.gitignore

100644100755
Lines changed: 42 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,43 @@
1-
logs/*
2-
!.gitkeep
3-
node_modules/
4-
bower_components/
5-
typings/
6-
tmp
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/dist-server
6+
/tmp
7+
/out-tsc
8+
9+
# dependencies
10+
/node_modules
11+
12+
# IDEs and editors
13+
/.idea
14+
.project
15+
.classpath
16+
.c9/
17+
*.launch
18+
.settings/
19+
*.sublime-workspace
20+
21+
# IDE - VSCode
22+
.vscode/*
23+
!.vscode/settings.json
24+
!.vscode/tasks.json
25+
!.vscode/launch.json
26+
!.vscode/extensions.json
27+
28+
# misc
29+
/.sass-cache
30+
/connect.lock
31+
/coverage
32+
/libpeerconnection.log
33+
npm-debug.log
34+
testem.log
35+
/typings
36+
37+
# e2e
38+
/e2e/*.js
39+
/e2e/*.map
40+
41+
# System Files
742
.DS_Store
8-
.idea
43+
Thumbs.db

.jshintrc

100644100755
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"globalstrict": true,
3-
"globals": {
4-
"angular": false,
5-
"describe": false,
6-
"it": false,
7-
"expect": false,
8-
"beforeEach": false,
9-
"afterEach": false,
10-
"module": false,
11-
"inject": false
12-
}
13-
}
2+
"esversion": 6,
3+
"globals": {
4+
"angular": false,
5+
"describe": false,
6+
"it": false,
7+
"expect": false,
8+
"beforeEach": false,
9+
"afterEach": false,
10+
"module": false,
11+
"inject": false
12+
}
13+
}

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ branches:
88
- master
99

1010
before_script:
11-
- npm install -g firebase-tools
11+
- npm install
1212

1313
script:
14+
- npm run test
1415
- npm run build
1516

1617
after_success:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# angularjs-typescript-webpack starter
22

3-
This project is an application skeleton for [AngularJS](http://angularjs.org/) 1.6+ web app using new component syntax, typescript 2 and webpack 2.
3+
This project is an application skeleton for [AngularJS](http://angularjs.org/) 1.7, typescript 2.9 and webpack 4.5
44

55
Project uses [angular-ts-decorators](https://github.com/vsternbach/angular-ts-decorators) to mimic angular 2+ style development in angularjs environment with typescript and webpack.
66

0 commit comments

Comments
 (0)