Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fsmanuel committed May 30, 2023
1 parent b752e9a commit a3f53f0
Show file tree
Hide file tree
Showing 6 changed files with 1,688 additions and 1,472 deletions.
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,36 +57,38 @@
"@ember/optional-features": "^2.0.0",
"@ember/test-helpers": "^2.7.0",
"@embroider/test-setup": "^1.6.0",
"@fortawesome/ember-fontawesome": "^1.0.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@glimmer/component": "^1.1.2",
"@glimmer/tracking": "^1.1.2",
"@release-it-plugins/lerna-changelog": "^5.0.0",
"babel-eslint": "^10.1.0",
"broccoli-asset-rev": "^2.7.0",
"ember-auto-import": "^2.4.2",
"ember-cli": "~4.4.1",
"ember-cli-app-version": "^5.0.0",
"ember-cli-autoprefixer": "^0.7.0",
"ember-cli-autoprefixer": "^2.0.0",
"ember-cli-dependency-checker": "^3.3.1",
"ember-cli-github-pages": "^0.2.0",
"ember-cli-github-pages": "^0.2.2",
"ember-cli-htmlbars": "^6.0.1",
"ember-cli-inject-live-reload": "^2.1.0",
"ember-cli-moment-shim": "^3.3.3",
"ember-cli-sass": "^8.0.1",
"ember-cli-moment-shim": "^3.8.0",
"ember-cli-sass": "^11.0.1",
"ember-cli-sri": "^2.1.1",
"ember-cli-terser": "^4.0.2",
"ember-cli-yuidoc": "^0.8.8",
"ember-code-snippet": "^3.0.0",
"ember-data": "~4.4.0",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-export-application-global": "^2.0.1",
"ember-font-awesome": "^3.0.5",
"ember-load-initializers": "^2.1.2",
"ember-prism": "^0.12.0",
"ember-prism": "^0.13.0",
"ember-qunit": "^5.1.5",
"ember-resolver": "^8.0.3",
"ember-source": "~4.4.0",
"ember-source-channel-url": "^3.0.0",
"ember-template-lint": "^4.8.0",
"ember-truth-helpers": "^3.0.0",
"ember-try": "^2.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
Expand All @@ -99,11 +101,9 @@
"prettier": "^2.6.2",
"qunit": "^2.19.1",
"qunit-dom": "^2.0.0",
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0",
"sass": "^1.15.3",
"webpack": "^5.72.1",
"yuidoc-ember-theme": "^2.0.1"
"release-it": "^15.10.3",
"sass": "^1.62.1",
"webpack": "^5.72.1"
},
"engines": {
"node": "12.* || 14.* || >= 16"
Expand All @@ -120,7 +120,7 @@
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
Expand Down
4 changes: 3 additions & 1 deletion tests/dummy/app/templates/application.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
<span>CP Validations</span>
</LinkTo>

<a href='https://github.com/adopted-ember-addons/ember-cp-validations' class='fa fa-github github'></a>
<a href='https://github.com/adopted-ember-addons/ember-cp-validations'>
<FaIcon @icon="github" @prefix="fab" class="github" />
</a>
</div>

<div class='content'>
Expand Down
2 changes: 1 addition & 1 deletion tests/dummy/app/templates/components/validated-input.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/>

{{#if this.isValid}}
<span class='valid-input fa fa-check'></span>
<FaIcon @icon="check" class="valid-input" />
{{/if}}

<div class='input-error'>
Expand Down
13 changes: 8 additions & 5 deletions tests/dummy/app/templates/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

{{#if this.showAlert}}
<div class='alert'>
<div class='fa fa-times icon-remove' {{action 'toggleProperty' 'showAlert'}}></div>
<FaIcon @icon="times" class="icon-remove" {{on "click" (fn this.toggleProperty 'showAlert')}} />
Please fix all the errors below before continuing.
</div>
{{/if}}
Expand Down Expand Up @@ -56,16 +56,19 @@
{{else}}
<div class='registered'>
{{!-- <img class='tomster' src='images/tomsterzilla.jpeg' alt='' data-test-tomster> --}}
<div class='fa fa-check-circle icon-success'></div>
<FaIcon @icon="check-circle" class="icon-success" />
<h2 class='success'>Success</h2>
</div>
{{/unless}}
<footer>
{{#unless this.isRegistered}}
<a class='show-code bottom' {{action 'toggleProperty' 'showCode'}}><i class='fa fa-code'></i> {{if this.showCode 'Hide Code' 'Show Code'}}
<i class='fa fa-code'></i></a>
<a class='show-code bottom' {{action 'toggleProperty' 'showCode'}}>
<FaIcon @icon="code" />
{{if this.showCode 'Hide Code' 'Show Code'}}
<FaIcon @icon="code" />
</a>
{{else}}
<a class='show-code bottom' {{action 'reset'}}>Reset Form</a>
<a class='show-code bottom' {{on "click" (fn this.toggleProperty "isRegistered")}}>Reset Form</a>
{{/unless}}
</footer>
</div>
Expand Down
6 changes: 6 additions & 0 deletions tests/dummy/config/icons.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = function () {
return {
'free-brands-svg-icons': ['github'],
'free-solid-svg-icons': ['check', 'check-circle', 'code', 'times'],
};
};
Loading

0 comments on commit a3f53f0

Please sign in to comment.