Skip to content

Commit b2032b4

Browse files
Bump some deps, fix some tests
1 parent c58de9f commit b2032b4

File tree

4 files changed

+78
-359
lines changed

4 files changed

+78
-359
lines changed

package.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
"broccoli-source": "^3.0.0",
4545
"broccoli-stew": "^3.0.0",
4646
"chalk": "^4.1.0",
47-
"ember-angle-bracket-invocation-polyfill": "^3.0.1",
4847
"ember-auto-import": "^1.8.0",
4948
"ember-classic-decorator": "^2.0.0",
5049
"ember-cli-autoprefixer": "^1.0.2",
@@ -62,9 +61,8 @@
6261
"ember-fetch": "^8.0.2",
6362
"ember-get-config": "^0.3.0",
6463
"ember-href-to": "^4.0.0",
65-
"ember-keyboard": "^6.0.2",
64+
"ember-keyboard": "^6.0.3",
6665
"ember-modal-dialog": "^4.0.0-alpha.0",
67-
"ember-named-arguments-polyfill": "^1.0.0",
6866
"ember-on-modifier": "^1.0.0",
6967
"ember-responsive": "^4.0.0",
7068
"ember-router-generator": "^2.0.0",
@@ -74,9 +72,9 @@
7472
"ember-truth-helpers": "^3.0.0",
7573
"esm": "^3.2.25",
7674
"execa": "^5.0.0",
77-
"fs-extra": "^9.0.1",
75+
"fs-extra": "^10.0.0",
7876
"git-repo-info": "^2.1.1",
79-
"highlight.js": "^10.4.0",
77+
"highlight.js": "^10.7.2",
8078
"hosted-git-info": "^4.0.2",
8179
"html-entities": "^2.3.2",
8280
"inflected": "^2.0.3",
@@ -111,7 +109,6 @@
111109
"common-tags": "^1.8.0",
112110
"ember-classy-page-object": "^0.6.1",
113111
"ember-cli": "~3.22.0",
114-
"ember-cli-addon-docs-esdoc": "^0.2.3",
115112
"ember-cli-addon-docs-yuidoc": "^1.0.0",
116113
"ember-cli-blueprint-test-helpers": "^0.19.2",
117114
"ember-cli-dependency-checker": "^3.2.0",
@@ -121,7 +118,7 @@
121118
"ember-cli-inject-live-reload": "^2.0.2",
122119
"ember-cli-mirage": "^2.0.0",
123120
"ember-cli-sri": "^2.1.1",
124-
"ember-cli-terser": "^4.0.0",
121+
"ember-cli-terser": "^4.0.2",
125122
"ember-component-css": "^0.7.4",
126123
"ember-data": "~3.27.0",
127124
"ember-disable-prototype-extensions": "^1.1.3",
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
/** @documenter esdoc */
1+
/** @documenter yuidoc */
22

33
import Component from '@ember/component';
4-
import { argument } from '@ember-decorators/argument';
5-
import { type } from '@ember-decorators/argument/type';
64

75
/**
86
Pretty cool component, right?
@@ -17,13 +15,15 @@ import { type } from '@ember-decorators/argument/type';
1715
{{/simple-list}}
1816
```
1917
18+
@class SimpleList
19+
@public
2020
@yield {SimpleListItem} item
2121
*/
2222
export default class SimpleList extends Component {
2323
/**
24-
The items for the list
25-
*/
26-
@argument
27-
@type('object')
24+
* The items for the list
25+
* @argument items
26+
* @type object
27+
*/
2828
items;
2929
}
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
/** @documenter esdoc */
1+
/** @documenter yuidoc */
22

33
import Component from '@ember/component';
4-
import { argument } from '@ember-decorators/argument';
5-
import { type } from '@ember-decorators/argument/type';
64

75
/**
86
Pretty cool component, right?
@@ -13,13 +11,15 @@ import { type } from '@ember-decorators/argument/type';
1311
{{simple-list/item value=1}}
1412
```
1513
14+
@class SimpleListItem
15+
@public
1616
@yield {object} value
1717
*/
1818
export default class SimpleListItem extends Component {
1919
/**
20-
The count
21-
*/
22-
@argument
23-
@type('object')
20+
* The count
21+
* @argument value
22+
* @type object
23+
*/
2424
value;
2525
}

0 commit comments

Comments
 (0)