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
// create the compiler instance | |
const compiler = new Compiler(); | |
// compiler.fs is the same as node "fs", and always async | |
await compiler.fs.writeFile('cmp-a.tsx', '....'); | |
// kick off the first build | |
let results = await compiler.build(); | |
// do an update to the file |
This file has been truncated, but you can view the full file.
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
/*! | |
* ionic.bundle.js is a concatenation of: | |
* ionic.js, angular.js, angular-animate.js, | |
* angular-sanitize.js, angular-ui-router.js, | |
* and ionic-angular.js | |
*/ | |
/*! | |
* Copyright 2014 Drifty Co. | |
* http://drifty.com/ |
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
<!-- Split View with only a left side menu on small viewports --> | |
<ion-split-view> | |
<ion-view content> | |
<ion-nav-buttons> | |
<button class="button" ng-click="$asideToggle()" aside-toggle> | |
Open Menu | |
</button> | |
</ion-nav-buttons> |