Skip to content

Commit 8400a50

Browse files
author
Yicheng Gong
committed
Fix guide. Adding --no-verify into Makefile flow
1 parent 90cf6ae commit 8400a50

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

MIGRATION_GUIDE_V2.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,15 @@
7676
**V1**
7777
```hbs
7878
{{#sortable-group model=model onChange=(action "reorderItems") as |group|}}
79-
{{#each model.items as |item|}
79+
{{#each model.items as |item|}}
8080
...
8181
{{/sortable-group}}
8282
```
8383

8484
**V2**
8585
```hbs
8686
{{#sortable-group groupModel=model model=model.items onChange=(action "reorderItems") as |group|}}
87-
{{#each group.model as |item|}
87+
{{#each group.model as |item|}}
8888
...
8989
{{/sortable-group}}
9090
```
@@ -102,5 +102,5 @@
102102
1. The `drag` and `reorder` test helpers are no longer global `async` helpers. They are now importable.
103103

104104
```javascript
105-
import { drag, reorder } from 'ember-sortable/test-helpers
105+
import { drag, reorder } from 'ember-sortable/test-helpers'
106106
```

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ demo:
1212
@echo "===> Committing demo"
1313
@echo ""
1414
git add demo
15-
git commit -m "Build demo"
15+
git commit -m "Build demo" --no-verify
1616
@echo ""
1717
@echo "===> Pushing gh-pages"
1818
@echo ""
19-
git push origin gh-pages -f
19+
git push origin gh-pages -f --no-verify
2020
@echo ""
2121
@echo "===> Cleaning up"
2222
@echo ""

0 commit comments

Comments
 (0)