Skip to content

Commit 102714d

Browse files
committed
Merge branch 'release/5.0.0'
2 parents 03dedd6 + 066138a commit 102714d

Some content is hidden

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

83 files changed

+15373
-1309
lines changed

.editorconfig

100644100755
Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
# @w3tec
2-
# http://editorconfig.org
1+
# EditorConfig is awesome: http://EditorConfig.org
32

3+
# top-most EditorConfig file
44
root = true
55

6+
# Unix-style newlines with a newline ending every file
67
[*]
7-
charset = utf-8
8-
indent_style = space
9-
indent_size = 2
108
end_of_line = lf
119
insert_final_newline = true
12-
trim_trailing_whitespace = true
1310

14-
[*.md]
15-
insert_final_newline = false
16-
trim_trailing_whitespace = false
11+
# 2 space indentation
12+
[**.*]
13+
indent_style = space
14+
indent_size = 2

.gitignore

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
1-
# @w3tec
1+
node_modules
2+
.DS_STORE
3+
npm-debug.log*
4+
yarn-error.log
5+
/dist
6+
/test/*coverage
7+
/.chrome
28

39
# Logs #
410
logs
511
*.log
612
*.log*
713

8-
# Coverage directory used by tools like istanbul #
9-
/test/coverage
14+
# Node Files #
15+
/node_modules
16+
/bower_components
17+
npm-debug.log
18+
19+
# OS generated files #
20+
.DS_Store
21+
Thumbs.db
1022

1123
# Node Files #
1224
/node_modules

.travis.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
1-
addons:
2-
firefox: latest
31
language: node_js
42
node_js:
53
- "6.9.1"
6-
before_install:
7-
- "export DISPLAY=:99.0"
8-
- "sh -e /etc/init.d/xvfb start"
94
install:
105
- npm run install:dev
116
script:
12-
- npm run lint
137
- npm test
14-
- npm run build:prod
15-
- npm run build:docs
16-
- npm run mobile:setup
8+
- npm start -- build
9+
- npm start -- mobile.setup
1710
notifications:
1811
email: false
1912
hipchat: 861e4f14f03ed33d069f1083a6c9f5@2679708

.vscode/extensions.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"recommendations": [
3+
"AureliaEffect.aurelia",
4+
"msjsdiag.debugger-for-chrome",
5+
"steoates.autoimport",
6+
"EditorConfig.EditorConfig",
7+
"christian-kohler.path-intellisense",
8+
"behzad88.Aurelia"
9+
]
10+
}

.vscode/launch.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
// Use IntelliSense to find out which attributes exist for node debugging
3+
// Use hover for the description of the existing attributes
4+
// For further information visit https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Chrome",
9+
"type": "chrome",
10+
"request": "launch",
11+
"url": "http://localhost:8080",
12+
"webRoot": "${workspaceRoot}/src",
13+
"userDataDir": "${workspaceRoot}/.chrome",
14+
"sourceMapPathOverrides": {
15+
"webpack:///./src/*": "${webRoot}/*"
16+
}
17+
}
18+
]
19+
}

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Place your settings in this file to overwrite default and user settings.
2+
{
3+
"typescript.tsdk": "node_modules/typescript/lib"
4+
}

LICENSE

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

0 commit comments

Comments
 (0)