Skip to content

Commit

Permalink
feat(app): initial a new project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Zhukov committed Feb 2, 2017
1 parent a5a1faf commit 5b15df6
Show file tree
Hide file tree
Showing 589 changed files with 578 additions and 50,410 deletions.
112 changes: 0 additions & 112 deletions .bootstraprc

This file was deleted.

6 changes: 2 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
# http://editorconfig.org

# Editor configuration, see http://editorconfig.org
root = true

[*]
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
max_line_length = off
trim_trailing_whitespace = false
6 changes: 6 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Auto detect text files and perform LF normalization
* text=auto

# JS and TS files must always use LF for tools to work
*.js eol=lf
*.ts eol=lf
6 changes: 0 additions & 6 deletions .github/CONTRIBUTING.md

This file was deleted.

34 changes: 0 additions & 34 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

13 changes: 0 additions & 13 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

99 changes: 34 additions & 65 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,69 +1,38 @@
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# compiled output
/dist
/tmp

# dependencies
node_modules

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# misc
/.sass-cache
/connect.lock
/coverage/*
/libpeerconnection.log
npm-debug.log
testem.log
/typings

# Users Environment Variables
.lock-wscript
# e2e
/e2e/*.js
/e2e/*.map

# OS generated files #
#System Files
.DS_Store
ehthumbs.db
Icon?
Thumbs.db

# Node Files #
/node_modules
/bower_components
npm-debug.log

# Coverage #
/coverage/

# Typing #
/src/typings/tsd/
/typings/
/tsd_typings/

# Dist #
/dist
/public/__build__/
/src/*/__build__/
/__build__/**
/public/dist/
/src/*/dist/
/dist/**
.webpack.json
/build
/build/**
/compiled
/dll

# Doc #
/doc/

# IDE #
.idea/
*.swp

# Angular #
*.ngfactory.ts
*.css.shim.ts
*.ngsummary.json
*.shim.ngstyle.ts
12 changes: 7 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,24 @@ language: node_js
node_js:
- "6"

cache:
directories:
- node_modules

addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8

install:
- npm config set spin false
before_install:
- npm install -g npm@latest
- npm install -g angular-cli@latest

- npm install
install:

script:
- npm run build:prod
- npm run build:aot

notifications:
slack: akveo:q559HckfZMSyZRb803aiLcjH
27 changes: 0 additions & 27 deletions .vscode/launch.json

This file was deleted.

3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

Loading

0 comments on commit 5b15df6

Please sign in to comment.