Skip to content

Commit

Permalink
feat: add Angular 7 support #88
Browse files Browse the repository at this point in the history
  • Loading branch information
asyncLiz committed Feb 3, 2019
1 parent 1ea04d6 commit 7dccff2
Show file tree
Hide file tree
Showing 27 changed files with 4,211 additions and 3,753 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,10 @@ Before
After

```html
<paper-checkbox [checked]="isChecked" (checked-changed)="isChecked = $event.detail.value"></paper-checkbox>
<paper-checkbox
[checked]="isChecked"
(checked-changed)="isChecked = $event.detail.value"
></paper-checkbox>
<!-- or -->
<paper-checkbox [(ngModel)]="isChecked" ironControl></paper-checkbox>
```
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ import { webcomponentsReady } from '@codebakery/origami/polyfills';

webcomponentsReady()
.then(() => {
// requires "module: "esnext" in tsconfig.json "compilerOptions" and
// requires "module": "esnext" in tsconfig.json "compilerOptions" and
// "angularCompilerOptions": {
// "entryModule": "app/app.module#AppModule"
// }
Expand Down
1 change: 0 additions & 1 deletion bin/lib/polyfill/update-index-files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
} from 'parse5';
import * as path from 'path';
import { promisify } from 'util';
import { writeJson } from '../file-util';
import {
getAngularJson,
isAngularCliJsonEs5,
Expand Down
5 changes: 0 additions & 5 deletions bin/origami.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
#!/usr/bin/env node
import * as fs from 'fs';
import * as glob from 'glob';
import * as path from 'path';
import * as ProgressBar from 'progress';
import * as ts from 'typescript';
import * as yargs from 'yargs';
import { compile } from './lib/compile';
import { error, info } from './lib/log';
import { polyfill } from './lib/polyfill/polyfill';
import { prepare } from './lib/prepare';
Expand Down
Loading

0 comments on commit 7dccff2

Please sign in to comment.