Skip to content

Commit

Permalink
Merge branch 'release/5.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
dweber019 committed Apr 19, 2017
2 parents 03dedd6 + 066138a commit 102714d
Show file tree
Hide file tree
Showing 83 changed files with 15,373 additions and 1,309 deletions.
16 changes: 7 additions & 9 deletions .editorconfig
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
# @w3tec
# http://editorconfig.org
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
# 2 space indentation
[**.*]
indent_style = space
indent_size = 2
18 changes: 15 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
# @w3tec
node_modules
.DS_STORE
npm-debug.log*
yarn-error.log
/dist
/test/*coverage
/.chrome

# Logs #
logs
*.log
*.log*

# Coverage directory used by tools like istanbul #
/test/coverage
# Node Files #
/node_modules
/bower_components
npm-debug.log

# OS generated files #
.DS_Store
Thumbs.db

# Node Files #
/node_modules
Expand Down
11 changes: 2 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
addons:
firefox: latest
language: node_js
node_js:
- "6.9.1"
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- npm run install:dev
script:
- npm run lint
- npm test
- npm run build:prod
- npm run build:docs
- npm run mobile:setup
- npm start -- build
- npm start -- mobile.setup
notifications:
email: false
hipchat: 861e4f14f03ed33d069f1083a6c9f5@2679708
10 changes: 10 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"recommendations": [
"AureliaEffect.aurelia",
"msjsdiag.debugger-for-chrome",
"steoates.autoimport",
"EditorConfig.EditorConfig",
"christian-kohler.path-intellisense",
"behzad88.Aurelia"
]
}
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// Use IntelliSense to find out which attributes exist for node debugging
// Use hover for the description of the existing attributes
// For further information visit https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8080",
"webRoot": "${workspaceRoot}/src",
"userDataDir": "${workspaceRoot}/.chrome",
"sourceMapPathOverrides": {
"webpack:///./src/*": "${webRoot}/*"
}
}
]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// Place your settings in this file to overwrite default and user settings.
{
"typescript.tsdk": "node_modules/typescript/lib"
}
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

Loading

0 comments on commit 102714d

Please sign in to comment.