shred and watch build tooling ( dgeni, gulp, jade)
# Conflicts: # gulpfile.js # package.json
This commit is contained in:
parent
73f42e8a9d
commit
2ef750d8cf
|
@ -2,7 +2,7 @@ dist: trusty
|
||||||
sudo: required
|
sudo: required
|
||||||
language: node_js
|
language: node_js
|
||||||
node_js:
|
node_js:
|
||||||
- "6"
|
- 12.14.1
|
||||||
os:
|
os:
|
||||||
- linux
|
- linux
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
||||||
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") return Reflect.decorate(decorators, target, key, desc);
|
||||||
|
switch (arguments.length) {
|
||||||
|
case 2: return decorators.reduceRight(function(o, d) { return (d && d(o)) || o; }, target);
|
||||||
|
case 3: return decorators.reduceRight(function(o, d) { return (d && d(target, key)), void 0; }, void 0);
|
||||||
|
case 4: return decorators.reduceRight(function(o, d) { return (d && d(target, key, o)) || o; }, desc);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||||
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||||
|
};
|
||||||
|
// #docregion
|
||||||
|
// #docregion import
|
||||||
|
var angular2_1 = require('angular2/angular2');
|
||||||
|
// #enddocregion
|
||||||
|
var MyAppComponent = (function () {
|
||||||
|
function MyAppComponent() {
|
||||||
|
this.name = 'Alice';
|
||||||
|
}
|
||||||
|
MyAppComponent = __decorate([
|
||||||
|
angular2_1.Component({
|
||||||
|
selector: 'my-app'
|
||||||
|
}),
|
||||||
|
angular2_1.View({
|
||||||
|
template: '<h1 id="output">Hello {{ name }}</h1>'
|
||||||
|
}),
|
||||||
|
__metadata('design:paramtypes', [])
|
||||||
|
], MyAppComponent);
|
||||||
|
return MyAppComponent;
|
||||||
|
})();
|
||||||
|
// #docregion bootstrap
|
||||||
|
angular2_1.bootstrap(MyAppComponent);
|
||||||
|
// #enddocregion
|
||||||
|
//# sourceMappingURL=app.js.map
|
Loading…
Reference in New Issue