Skip to content

Commit

Permalink
chore(deps): add missing deps after babel upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
derrabauke committed Jan 5, 2022
1 parent 363059a commit 0512142
Show file tree
Hide file tree
Showing 4 changed files with 736 additions and 18,312 deletions.
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@
"@adfinis-sygroup/eslint-config": "1.5.0",
"@adfinis-sygroup/semantic-release-config": "3.2.1",
"@babel/core": "7.16.5",
"@babel/helper-create-regexp-features-plugin": "^7.16.7",
"@babel/helper-environment-visitor": "^7.16.5",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/plugin-transform-modules-amd": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@ember/optional-features": "2.0.0",
"@ember/test-helpers": "2.6.0",
"@embroider/test-setup": "0.45.0",
Expand Down
4 changes: 2 additions & 2 deletions tests/dummy/app/templates/docs/components/validated-form.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ the `loading` template parameter:
<!-- prettier-ignore-start -->
{{#docs-demo as |demo|}}
{{#demo.example name='validated-form-action-template.hbs'}}
<ValidatedForm @model={{(changeset model)}} @on-submit={{this.submit}} as |f|>
<ValidatedForm @model={{changeset model}} @on-submit={{this.submit}} as |f|>
{{#let f.submit as |Submit|}}
<Submit @label={{if f.loading 'Saving...' 'Save'}} @disabled={{f.loading}}/>
{{/let}}
Expand All @@ -49,7 +49,7 @@ It also works very well with [ember-concurrency](http://ember-concurrency.com/)
<!-- prettier-ignore-start -->
{{#docs-demo as |demo|}}
{{#demo.example name='validated-form-task-template.hbs'}}
<ValidatedForm @model={{(changeset model)}} @on-submit={{perform this.submit}} as |f|>
<ValidatedForm @model={{changeset model}} @on-submit={{perform this.submit}} as |f|>
{{#let f.submit as |Submit|}}
<Submit @label={{if f.loading 'Saving...' 'Save'}} @disabled={{f.loading}}/>
{{/let}}
Expand Down
Loading

0 comments on commit 0512142

Please sign in to comment.