-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a20e921
commit d3c7f04
Showing
13 changed files
with
354 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
|
||
[*.md] | ||
max_line_length = 0 | ||
trim_trailing_whitespace = false | ||
|
||
# Indentation override | ||
#[lib/**.js] | ||
#[{package.json,.travis.yml}] | ||
#[**/**.js] |
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,8 @@ | ||
{ | ||
"server": { | ||
"baseDir": "src", | ||
"routes": { | ||
"/node_modules": "node_modules" | ||
} | ||
} | ||
} |
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,63 @@ | ||
{ | ||
"name": "angular-quickstart", | ||
"version": "1.0.0", | ||
"description": "QuickStart package.json from the documentation, supplemented with testing support", | ||
"scripts": { | ||
"build": "tsc -p src/", | ||
"build:watch": "tsc -p src/ -w", | ||
"build:e2e": "tsc -p e2e/", | ||
"serve": "lite-server -c=bs-config.json", | ||
"serve:e2e": "lite-server -c=bs-config.e2e.json", | ||
"prestart": "npm run build", | ||
"start": "concurrently \"npm run build:watch\" \"npm run serve\"", | ||
"pree2e": "npm run build:e2e", | ||
"e2e": "concurrently \"npm run serve:e2e\" \"npm run protractor\" --kill-others --success first", | ||
"preprotractor": "webdriver-manager update", | ||
"protractor": "protractor protractor.config.js", | ||
"pretest": "npm run build", | ||
"test": "concurrently \"npm run build:watch\" \"karma start karma.conf.js\"", | ||
"pretest:once": "npm run build", | ||
"test:once": "karma start karma.conf.js --single-run", | ||
"lint": "tslint ./src/**/*.ts -t verbose" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@angular/common": "~4.3.4", | ||
"@angular/compiler": "~4.3.4", | ||
"@angular/core": "~4.3.4", | ||
"@angular/forms": "~4.3.4", | ||
"@angular/http": "~4.3.4", | ||
"@angular/platform-browser": "~4.3.4", | ||
"@angular/platform-browser-dynamic": "~4.3.4", | ||
"@angular/router": "~4.3.4", | ||
|
||
"angular-in-memory-web-api": "~0.3.0", | ||
"systemjs": "0.19.40", | ||
"core-js": "^2.4.1", | ||
"rxjs": "5.0.1", | ||
"zone.js": "^0.8.4" | ||
}, | ||
"devDependencies": { | ||
"concurrently": "^3.2.0", | ||
"lite-server": "^2.2.2", | ||
"typescript": "~2.1.0", | ||
|
||
"canonical-path": "0.0.2", | ||
"tslint": "^3.15.1", | ||
"lodash": "^4.16.4", | ||
"jasmine-core": "~2.4.1", | ||
"karma": "^1.3.0", | ||
"karma-chrome-launcher": "^2.0.0", | ||
"karma-cli": "^1.0.1", | ||
"karma-jasmine": "^1.0.2", | ||
"karma-jasmine-html-reporter": "^0.2.2", | ||
"protractor": "~4.0.14", | ||
"rimraf": "^2.5.4", | ||
|
||
"@types/node": "^6.0.46", | ||
"@types/jasmine": "2.5.36" | ||
}, | ||
"repository": {} | ||
} |
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,7 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'my-app', | ||
template: `<h1>Hello {{name}}</h1>`, | ||
}) | ||
export class AppComponent { name = 'Angular'; } |
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,11 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { BrowserModule } from '@angular/platform-browser'; | ||
|
||
import { AppComponent } from './app.component'; | ||
|
||
@NgModule({ | ||
imports: [ BrowserModule ], | ||
declarations: [ AppComponent ], | ||
bootstrap: [ AppComponent ] | ||
}) | ||
export class AppModule { } |
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,25 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Angular QuickStart</title> | ||
<base href="/"> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="styles.css"> | ||
|
||
<!-- Polyfill(s) for older browsers --> | ||
<script src="node_modules/core-js/client/shim.min.js"></script> | ||
|
||
<script src="node_modules/zone.js/dist/zone.js"></script> | ||
<script src="node_modules/systemjs/dist/system.src.js"></script> | ||
|
||
<script src="systemjs.config.js"></script> | ||
<script> | ||
System.import('main.js').catch(function(err){ console.error(err); }); | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<my-app>Loading AppComponent content here ...</my-app> | ||
</body> | ||
</html> |
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,5 @@ | ||
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; | ||
|
||
import { AppModule } from './app/app.module'; | ||
|
||
platformBrowserDynamic().bootstrapModule(AppModule); |
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,5 @@ | ||
h1 { | ||
color: #369; | ||
font-family: Arial, Helvetica, sans-serif; | ||
font-size: 250%; | ||
} |
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 @@ | ||
var templateUrlRegex = /templateUrl\s*:(\s*['"`](.*?)['"`]\s*)/gm; | ||
var stylesRegex = /styleUrls *:(\s*\[[^\]]*?\])/g; | ||
var stringRegex = /(['`"])((?:[^\\]\\\1|.)*?)\1/g; | ||
|
||
module.exports.translate = function(load){ | ||
if (load.source.indexOf('moduleId') != -1) return load; | ||
|
||
var url = document.createElement('a'); | ||
url.href = load.address; | ||
|
||
var basePathParts = url.pathname.split('/'); | ||
|
||
basePathParts.pop(); | ||
var basePath = basePathParts.join('/'); | ||
|
||
var baseHref = document.createElement('a'); | ||
baseHref.href = this.baseURL; | ||
baseHref = baseHref.pathname; | ||
|
||
if (!baseHref.startsWith('/base/')) { // it is not karma | ||
basePath = basePath.replace(baseHref, ''); | ||
} | ||
|
||
load.source = load.source | ||
.replace(templateUrlRegex, function(match, quote, url){ | ||
var resolvedUrl = url; | ||
|
||
if (url.startsWith('.')) { | ||
resolvedUrl = basePath + url.substr(1); | ||
} | ||
|
||
return 'templateUrl: "' + resolvedUrl + '"'; | ||
}) | ||
.replace(stylesRegex, function(match, relativeUrls) { | ||
var urls = []; | ||
|
||
while ((match = stringRegex.exec(relativeUrls)) !== null) { | ||
if (match[2].startsWith('.')) { | ||
urls.push('"' + basePath + match[2].substr(1) + '"'); | ||
} else { | ||
urls.push('"' + match[2] + '"'); | ||
} | ||
} | ||
|
||
return "styleUrls: [" + urls.join(', ') + "]"; | ||
}); | ||
|
||
return load; | ||
}; |
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,11 @@ | ||
/** | ||
* Add barrels and stuff | ||
* Adjust as necessary for your application needs. | ||
*/ | ||
// (function (global) { | ||
// System.config({ | ||
// packages: { | ||
// // add packages here | ||
// } | ||
// }); | ||
// })(this); |
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,45 @@ | ||
/** | ||
* System configuration for Angular samples | ||
* Adjust as necessary for your application needs. | ||
*/ | ||
(function (global) { | ||
System.config({ | ||
paths: { | ||
// paths serve as alias | ||
'npm:': 'node_modules/' | ||
}, | ||
// map tells the System loader where to look for things | ||
map: { | ||
// our app is within the app folder | ||
'app': 'app', | ||
|
||
// angular bundles | ||
'@angular/core': 'npm:@angular/core/bundles/core.umd.js', | ||
'@angular/common': 'npm:@angular/common/bundles/common.umd.js', | ||
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js', | ||
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js', | ||
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js', | ||
'@angular/http': 'npm:@angular/http/bundles/http.umd.js', | ||
'@angular/router': 'npm:@angular/router/bundles/router.umd.js', | ||
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js', | ||
|
||
// other libraries | ||
'rxjs': 'npm:rxjs', | ||
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js' | ||
}, | ||
// packages tells the System loader how to load when no filename and/or no extension | ||
packages: { | ||
app: { | ||
defaultExtension: 'js', | ||
meta: { | ||
'./*.js': { | ||
loader: 'systemjs-angular-loader.js' | ||
} | ||
} | ||
}, | ||
rxjs: { | ||
defaultExtension: 'js' | ||
} | ||
} | ||
}); | ||
})(this); |
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,13 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
"sourceMap": true, | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"lib": [ "es2015", "dom" ], | ||
"noImplicitAny": true, | ||
"suppressImplicitAnyIndexErrors": true | ||
} | ||
} |
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,93 @@ | ||
{ | ||
"rules": { | ||
"class-name": true, | ||
"comment-format": [ | ||
true, | ||
"check-space" | ||
], | ||
"curly": true, | ||
"eofline": true, | ||
"forin": true, | ||
"indent": [ | ||
true, | ||
"spaces" | ||
], | ||
"label-position": true, | ||
"label-undefined": true, | ||
"max-line-length": [ | ||
true, | ||
140 | ||
], | ||
"member-access": false, | ||
"member-ordering": [ | ||
true, | ||
"static-before-instance", | ||
"variables-before-functions" | ||
], | ||
"no-arg": true, | ||
"no-bitwise": true, | ||
"no-console": [ | ||
true, | ||
"debug", | ||
"info", | ||
"time", | ||
"timeEnd", | ||
"trace" | ||
], | ||
"no-construct": true, | ||
"no-debugger": true, | ||
"no-duplicate-key": true, | ||
"no-duplicate-variable": true, | ||
"no-empty": false, | ||
"no-eval": true, | ||
"no-inferrable-types": true, | ||
"no-shadowed-variable": true, | ||
"no-string-literal": false, | ||
"no-switch-case-fall-through": true, | ||
"no-trailing-whitespace": true, | ||
"no-unused-expression": true, | ||
"no-unused-variable": true, | ||
"no-unreachable": true, | ||
"no-use-before-declare": true, | ||
"no-var-keyword": true, | ||
"object-literal-sort-keys": false, | ||
"one-line": [ | ||
true, | ||
"check-open-brace", | ||
"check-catch", | ||
"check-else", | ||
"check-whitespace" | ||
], | ||
"quotemark": [ | ||
true, | ||
"single" | ||
], | ||
"radix": true, | ||
"semicolon": [ | ||
"always" | ||
], | ||
"triple-equals": [ | ||
true, | ||
"allow-null-check" | ||
], | ||
"typedef-whitespace": [ | ||
true, | ||
{ | ||
"call-signature": "nospace", | ||
"index-signature": "nospace", | ||
"parameter": "nospace", | ||
"property-declaration": "nospace", | ||
"variable-declaration": "nospace" | ||
} | ||
], | ||
"variable-name": false, | ||
"whitespace": [ | ||
true, | ||
"check-branch", | ||
"check-decl", | ||
"check-operator", | ||
"check-separator", | ||
"check-type" | ||
] | ||
} | ||
} |