-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature(webpack): latest angular-cli builds (#86)
* angular-cli latest deployed with rc.7 * css files added * dependencies updated * moduling added based on latest router * updated with webpack 15 * README updated * updated README.md and e2e setup * removed unused code and dependencies * re-added basic unit test, fixed karma setup, and updated travis setup * added to see if fixes build issue # angular-cli/1930 * run chrome in travis * make ng test run once so travis can finish * included spec.ts files for intellisense * fixed highlight dependency using require() and not linting for that line * checking if require affects dependency CI * fixed back * udpate(material): checkbox text * udpate(app-sass): hint & icon button * update(home): add repo links in toolbar
- Loading branch information
1 parent
2e83b20
commit 0a272b0
Showing
89 changed files
with
351 additions
and
593 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,9 +14,9 @@ Covalent is a reusable UI platform from Teradata for building web applications w | |
## Setup | ||
|
||
* Ensure you have Node 4.4 and NPM 3+ installed. | ||
* Install Angular CLI `npm i -g [email protected].10` | ||
* Install Typescript 2.0 `npm i -g typescript@2.0.2` | ||
* Install TSLint and Typings `npm install -g tslint typings` | ||
* Install Angular CLI `npm i -g [email protected].15` | ||
* Install Typescript 2.0 `npm i -g typescript` | ||
* Install TSLint `npm install -g tslint` | ||
* Install Protractor for e2e testing `npm install -g protractor` | ||
* Install Node packages `npm i` | ||
* Update Webdriver `webdriver-manager update` and `./node_modules/.bin/webdriver-manager update` | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Karma configuration file, see link for more information | ||
// https://karma-runner.github.io/0.13/config/configuration-file.html | ||
|
||
module.exports = function (config) { | ||
var configuration = { | ||
basePath: '.', | ||
frameworks: ['jasmine', 'angular-cli'], | ||
plugins: [ | ||
require('karma-jasmine'), | ||
require('karma-chrome-launcher'), | ||
require('karma-remap-istanbul'), | ||
require('angular-cli/plugins/karma') | ||
], | ||
customLaunchers: { | ||
// chrome setup for travis CI using chromium | ||
Chrome_travis_ci: { | ||
base: 'Chrome', | ||
flags: ['--no-sandbox'] | ||
} | ||
}, | ||
files: [ | ||
{ pattern: './src/test.ts', watched: false } | ||
], | ||
preprocessors: { | ||
'./src/test.ts': ['angular-cli'] | ||
}, | ||
remapIstanbulReporter: { | ||
reports: { | ||
html: 'coverage', | ||
lcovonly: './coverage/coverage.lcov' | ||
} | ||
}, | ||
angularCli: { | ||
config: './angular-cli.json', | ||
environment: 'dev' | ||
}, | ||
reporters: ['progress', 'karma-remap-istanbul'], | ||
port: 9876, | ||
colors: true, | ||
logLevel: config.LOG_INFO, | ||
autoWatch: true, | ||
browsers: ['Chrome'], | ||
singleRun: false | ||
}; | ||
if (process.env.TRAVIS) { | ||
configuration.browsers = ['Chrome_travis_ci']; | ||
} | ||
config.set(configuration); | ||
}; |
Oops, something went wrong.