3.2 KiB
3.2 KiB
id, title, challengeType, forumTopicId, localeTitle
id | title | challengeType | forumTopicId | localeTitle |
---|---|---|---|---|
587d7fb5367417b2b2512c02 | Use the Tilde-Character to Always Use the Latest Patch Version of a Dependency | 2 | 301532 | Используйте символ тильды, чтобы всегда использовать последнюю версию патча зависимости |
Description
"some-package-name": "~1.3.8" allows updates to any 1.3.x version.
Инструкции
Используйте символ тильды (~), чтобы поставить префикс версии момента в ваших зависимостях и позволить npm обновить ее до любой новой версии PATCH.
Обратите внимание, что сами номера версий менять не следует.
Instructions
~
) character to prefix the version of moment in your dependencies, and allow npm to update it to any new PATCH release.
Note: The version numbers themselves should not be changed.
Tests
tests:
- text: '"dependencies" should include "moment"'
testString: getUserInput => $.get(getUserInput('url') + '/_api/package.json').then(data => { var packJson = JSON.parse(data); assert.property(packJson.dependencies, 'moment', '"dependencies" does not include "moment"'); }, xhr => { throw new Error(xhr.responseText); })
- text: '"moment" version should match "~2.10.2"'
testString: getUserInput => $.get(getUserInput('url') + '/_api/package.json').then(data => { var packJson = JSON.parse(data); assert.match(packJson.dependencies.moment, /^\~2\.10\.2/, 'Wrong version of "moment". It should be ~2.10.2'); }, xhr => { throw new Error(xhr.responseText); })