Skip to content

Commit 9fab34a

Browse files
author
Robert Jackson
authored
Merge pull request #83 from ember-cli/remove-validation-check-for-until
Remove validation check for deprecation `until`
2 parents 76146b1 + e2453cc commit 9fab34a

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/utils/builder.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,6 @@ module.exports = class Builder {
164164
) {
165165
throw new ReferenceError(`deprecate's meta information requires an "id" field.`);
166166
}
167-
168-
if (
169-
meta &&
170-
meta.properties &&
171-
!meta.properties.some(prop => prop.key.name === 'until' || prop.key.value === 'until')
172-
) {
173-
throw new ReferenceError(`deprecate's meta information requires an "until" field.`);
174-
}
175167
},
176168
});
177169
}

0 commit comments

Comments
 (0)