Skip to content

Commit

Permalink
feat(select): update to ng v2.3+ (#590)
Browse files Browse the repository at this point in the history
  • Loading branch information
valorkin authored Jan 18, 2017
1 parent b133c73 commit 71536bc
Show file tree
Hide file tree
Showing 76 changed files with 8,658 additions and 736 deletions.
108 changes: 0 additions & 108 deletions .config/bundle-system.js

This file was deleted.

6 changes: 0 additions & 6 deletions .eslintrc.json

This file was deleted.

54 changes: 28 additions & 26 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,36 +1,38 @@
# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
/node_modules
/bower_components

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

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

# type script artifacts
/typings

# WebStorm
.idea
.vscode

# ignore build and dist for now
/bundles
/demo-build
/dist
/coverage
/ts


/demo/**/*.js
/demo/**/*.js.map
/demo/**/*.d.ts
!/demo/custom-typings.d.ts
/components/**/*.js
/components/**/*.js.map
/components/**/*.d.ts
ng2-select.js
ng2-select.js.map
ng2-select.d.ts

/temp
/demo/dist
/demo/temp
/logs

factories
#System Files
.DS_Store
Thumbs.db


/**/*.metadata.json
/demo/e2e/*.js
/demo/e2e/*.map
src/**/*.js
src/**/*.map
scripts/**/*.js
scripts/**/*.map
29 changes: 0 additions & 29 deletions .ng2-config.js

This file was deleted.

25 changes: 0 additions & 25 deletions .npmignore

This file was deleted.

14 changes: 8 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@ language: node_js
node_js:
- "6"

#before_install: npm i -g npm@latest
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start

script:
- npm test
- npm run pretest
- npm run test-coverage

after_success:
- ./node_modules/.bin/codecov -f coverage/coverage-final.json
- ./node_modules/.bin/codecov

addons:
# sauce labs tunel connector (read more https://docs.travis-ci.com/user/sauce-connect/ )
sauce_connect: true
firefox: "42.0"
firefox: "latest"
apt:
sources:
- ubuntu-toolchain-r-test
Expand Down
57 changes: 57 additions & 0 deletions angular-cli.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"project": {
"name": "ng2-select"
},
"apps": [
{
"root": "demo/src",
"outDir": "demo/dist",
"assets": [
"assets"
],
"index": "index.html",
"main": "main.ts",
"test": "../../scripts/test.ts",
"tsconfig": "tsconfig.json",
"prefix": "",
"mobile": false,
"styles": [
],
"scripts": [
],
"environments": {
"source": "environments/environment.ts",
"dev": "environments/environment.ts",
"prod": "environments/environment.prod.ts"
}
}
],
"addons": [],
"packages": [],
"e2e": {
"protractor": {
"config": "protractor.conf.js"
}
},
"test": {
"karma": {
"config": "karma.conf.js"
}
},
"defaults": {
"styleExt": "css",
"prefixInterfaces": false,
"inline": {
"style": false,
"template": false
},
"spec": {
"class": false,
"component": true,
"directive": true,
"module": false,
"pipe": true,
"service": true
}
}
}
2 changes: 2 additions & 0 deletions demo/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Created by .ignore support plugin (hsz.mobi)
src/api-doc.json
Loading

0 comments on commit 71536bc

Please sign in to comment.