Rhys Arkins
b5fdc67872
feat: github datasource getDependency ( #2051 )
...
Add new function `getDependency` with same structure as in npm.
2018-05-31 16:24:14 +02:00
Rhys Arkins
830d56875e
fix: restore allowedVersions filter ( #2044 )
...
Also adds tests to make sure it’s never lost again.
Fixes https://github.com/renovatebot/config-help/issues/49
2018-05-30 08:27:49 +02:00
Rhys Arkins
8737a324df
fix(yarn): handle complex workspaces packages
2018-05-29 22:06:36 +02:00
Rhys Arkins
5475e567d7
fix(node): use semver sort
2018-05-29 15:17:41 +02:00
Rhys Arkins
1da997dbe6
fix: pin when range strategy is autodetected to pin
2018-05-29 14:27:34 +02:00
Rhys Arkins
51108d3fed
logs: log dep name with pin message
2018-05-29 14:20:28 +02:00
Rhys Arkins
6cb8f7f583
feat: refactor lookup/package logic for npm ( #2038 )
2018-05-29 12:44:01 +02:00
Rhys Arkins
16e66ad67b
fix: do not log find before lock file
...
Closes #2039
2018-05-29 10:04:51 +02:00
Rhys Arkins
9e80c2bde7
fix(npm): unpublishable calculation
2018-05-29 09:52:32 +02:00
Rhys Arkins
1271414cb0
fix: respect latest only if ignoring unstable
2018-05-29 09:32:15 +02:00
Rhys Arkins
7ad306da44
feat: allow rollback + upgrades
...
If a current version is missing, we now return both rollback as well as upgrades if upgrades are present.
2018-05-29 07:13:44 +02:00
Rhys Arkins
6c2cabac6e
feat: optimise lerna reuse
...
Removes `npx` approach and instead installs each version globally.
Closes #1801
2018-05-29 06:25:46 +02:00
Rhys Arkins
7b149df595
logs: less debug
2018-05-28 22:25:33 +02:00
Rhys Arkins
720c280421
refactor: handle lock file errors due to registry not being ready
2018-05-28 20:12:17 +02:00
Rhys Arkins
6f77953795
fix(npm): use —no-audit
2018-05-28 19:41:34 +02:00
Rhys Arkins
4ae2ee10e9
refactor: run find after npm install
2018-05-28 19:19:10 +02:00
Rhys Arkins
98c250af1a
fix: log info messages if package being updated fails
2018-05-28 18:47:58 +02:00
Rhys Arkins
11d5a8b02e
fix: don’t update starred versions
2018-05-28 15:18:40 +02:00
Rhys Arkins
1c115ae6b6
refactor: move getRangeStrategy into npm/lookup
2018-05-28 13:25:54 +02:00
Rhys Arkins
c9e9bb73a8
fix: widen complex bump range instead of skip
2018-05-28 12:42:02 +02:00
Rhys Arkins
addf184473
feat: refactor getPackageUpdates for manager expansion ( #1994 )
...
The goal of this PR is to refactor npm's version lookup/grouping as much as possible to enable the same logic to be used for other package managers.
2018-05-28 09:09:22 +02:00
Rhys Arkins
a9f47ca0b0
fix(yarn): read yarnrc contents properly
...
Properly fixes #2020
2018-05-26 18:22:32 +02:00
Rhys Arkins
c2100ffc21
fix(yarn): look for .yarnrc for every package file
...
Closes #2020
2018-05-25 12:12:03 +02:00
Rhys Arkins
7f8dd25a97
refactor: matchesSemver -> matches
2018-05-21 17:40:15 +02:00
Rhys Arkins
63f2669153
refactor: semverSort -> sortVersions
2018-05-21 17:35:50 +02:00
Rhys Arkins
7a1d30c8b6
refactor: move semver to lib/versioning
2018-05-21 17:30:55 +02:00
Rhys Arkins
d45f957cfd
refactor: defer isX upgrade classifications
2018-05-21 17:20:41 +02:00
Rhys Arkins
702ccee67a
refactor: rename changelog fields
2018-05-18 17:20:20 +02:00
Rhys Arkins
4c80a433df
fix(npm): handle jump between unstable releases in same major
...
Closes #1990
2018-05-18 16:07:33 +02:00
Rhys Arkins
93379c4b79
refactor: separatePatchReleases -> separateMinorPatch
...
Closes #1952
2018-05-17 07:40:29 +02:00
Rhys Arkins
6c3645d18c
refactor: separateMajorReleases -> separateMajorMinor
2018-05-17 07:37:37 +02:00
Rhys Arkins
eaf10143c2
refactor: rename multipleMajorPrs -> separateMultipleMajor
2018-05-17 07:33:59 +02:00
Rhys Arkins
7f4cb4aa57
feat: rangeStrategy ( #1954 )
...
This PR replaces the existing `pinVersions`, `upgradeInRange` and `versionStrategy` settings with a single one: `rangeStrategy`.
Previously:
- `pinVersions` could be `true` or `false`, but defaulted to `null`, which meant that Renovate would decide. `true` meant that Renovate would replace existing ranges like `^1.0.0` with an exact/pinned version such as `1.2.0`.
- `upgradeInRange` could be true or false, default to false. If `true`, it would mean Renovate would replace an existing range like `^1.0.0` with something like `^1.2.0`
- `versionStrategy` could be `replace` or `widen` and was mainly used for `peerDependencies` to widen existing ranges, e.g. from `^1.0.0` to `^1.0.0 || ^2.0.0`
It was possible to set conflicting settings, e.g. configuring `pinVersions=true` and `upgradeInRange=true`.
Now, we combine them into a single setting: `rangeStrategy`:
- `auto` = Renovate decides (this will be done on a manager-by-manager basis)
- `pin` = convert ranges to exact versions
- `bump` = same as `upgradeInRange` previously, e.g. bump the range even if the new version satisifies the existing range
- `replace` = Same as pinVersions === false && upgradeInRange === false, i.e. only replace the range if the new version falls outside it
- `widen` = Same as previous versionStrategy==='widen'
2018-05-17 07:16:13 +02:00
Rhys Arkins
10fae47aa0
logs: print cmd when lockfile error
2018-05-16 08:22:28 +02:00
Rhys Arkins
d8aac6aff6
refactor: run find before installs
2018-05-16 08:20:51 +02:00
Rhys Arkins
b7703e3beb
refactor: ls -l before yarn install
2018-05-16 06:58:07 +02:00
Rhys Arkins
7f49e1b617
logs: fix circleci debug
2018-05-16 06:36:48 +02:00
Rhys Arkins
2167eeba11
fix(lerna): return gracefully for lock file maintenance
2018-05-16 05:27:12 +02:00
Rhys Arkins
b7c90ce15d
refactor(lerna): throw error if no lernaClient
2018-05-15 21:38:39 +02:00
Rhys Arkins
9f8852c1e3
refactor(lerna): debug missing lernaClient
2018-05-15 21:27:47 +02:00
Rhys Arkins
f3584b5fea
fix(yarn): optimise existing file writing
2018-05-15 20:52:25 +02:00
Rhys Arkins
da562aadd2
fix(npm): write package-lock.json and npm-shrinkwrap.json
2018-05-15 20:03:06 +02:00
Rhys Arkins
2323820df9
refactor: replace config dot notation in npm lookup
2018-05-15 07:29:42 +02:00
Rhys Arkins
409cd4adde
refactor: monorepoPackages -> internalPackages
2018-05-15 07:21:10 +02:00
Rhys Arkins
8c2ae3248c
fix: use yarn workspaces packages if defined, the lerna
2018-05-15 05:58:18 +02:00
Rhys Arkins
3fa8ea22ea
logs: log packageFile when failing to look up dependency
2018-05-14 21:53:00 +02:00
Rhys Arkins
1dd623c917
fix: set npmrc before calling getDependency
2018-05-14 21:02:50 +02:00
Rhys Arkins
2bc93e285b
fix: correct nested config recommendation
2018-05-14 10:08:41 +02:00
Rhys Arkins
1352bbeb18
feat: discard npmrc if containing variables
...
.npmrc files will fail during lock file generation if they contain unexpanded variables, so it’s better to discard them instead.
2018-05-14 08:11:23 +02:00
Rhys Arkins
7e8148dfae
fix: restore non-root package.json config validation errors
2018-05-14 07:54:24 +02:00
Rhys Arkins
69b264cf01
fix(npm): don’t read npmrc files if ignoreNpmrcFiles=true
2018-05-13 23:06:27 +02:00
Rhys Arkins
ebe9607d79
fix(npm): npmrc/ignoreNpmrc logic
2018-05-13 22:04:06 +02:00
Rhys Arkins
57552d5d2b
fix(npm): skip packageFile npmrc if ignoreNpmrc
2018-05-13 21:31:46 +02:00
Rhys Arkins
16f6b5810a
fix(npm): skip lock file check if no npm package files
2018-05-11 07:23:26 +02:00
Rhys Arkins
eccef72b52
fix(npm): restore autodetect pinVersions
2018-05-09 18:17:11 +02:00
Rhys Arkins
9c7600d6d3
fix: check npmrc before calling includes
2018-05-09 14:20:10 +02:00
Rhys Arkins
2ebc0b7718
fix: don’t write .npmrc if contains unexpanded variables
2018-05-09 13:38:24 +02:00
Rhys Arkins
4ecd691325
fix: expand criteria for keeping package.json files
2018-05-09 12:36:58 +02:00
Rhys Arkins
1631757e61
logs: don’t debug package.json content
2018-05-09 12:35:22 +02:00
Rhys Arkins
d4de9108af
feat: skip PR generation if lock file generation fails
2018-05-09 12:10:45 +02:00
Rhys Arkins
ee3f7f714e
fix: iterate all lerna dirs
2018-05-09 11:17:50 +02:00
Rhys Arkins
2075c20baa
fix: lock file refactor
2018-05-09 10:42:38 +02:00
Rhys Arkins
10012f343a
fix: manager -> lernaClient
2018-05-09 10:14:21 +02:00
Rhys Arkins
a332d8fb50
fix: lernaLockFile -> lernaClient
2018-05-09 09:38:11 +02:00
Rhys Arkins
f1f88e4443
fix: always write config.npmrc
2018-05-09 09:35:02 +02:00
Rhys Arkins
3c0e6b7e88
fix: default lerna client to npm
2018-05-09 09:32:21 +02:00
Rhys Arkins
ecdcd9df4f
feat: refactor dependency extraction ( #1912 )
...
Rewrite of dependency extraction, particularly for npm. Paves way for easier addition of new package managers.
Closes #1882
2018-05-09 08:03:59 +02:00
Ayoub Kaanich
38a4397feb
feat: changelog for pip ( #1927 )
...
This PR adds support for pip changelog,
unlike npm, I couldn't find a mapping between github and pip other than github being used as the homepage of some projects, if there are other ways of mapping it would be helpful.
Closes #1911
2018-05-08 04:55:16 +02:00
Rhys Arkins
f190ca505b
fix(docker): handle null string when extracting
2018-05-03 19:27:57 +02:00
Rhys Arkins
19e35ffee0
refactor: return object from extract ( #1914 )
2018-05-03 18:09:18 +02:00
Rhys Arkins
100c6368d8
fix: update node.js data
2018-05-01 20:46:54 +02:00
Rhys Arkins
a94088ba28
feat: deprecate packageFiles ( #1898 )
...
This PR deprecates the use of `packageFiles` and migrates it to `includePaths` and `packageRules`.
Closes #1887
2018-05-01 09:21:15 +02:00
Rhys Arkins
a17cbda1a9
fix: allow config.global limit for maxPackageFiles
2018-05-01 08:25:27 +02:00
Rhys Arkins
336ab8fdf8
refactor: don’t warn when no Dockerfile FROM found
2018-05-01 07:59:58 +02:00
Rhys Arkins
c800ee9344
refactor: remove custom docker resolve/contentPatterns ( #1897 )
2018-04-30 18:57:52 +02:00
Rhys Arkins
43742467f6
feat: includePaths ( #1896 )
...
Adds a config option `includePaths` that allows the user to specify one or more paths to include in renovation and the rest will be excluded.
2018-04-30 16:13:32 +02:00
Rhys Arkins
55c2a4619e
feat: rate limit packageFile retrieval
...
Uses fixed limits of 5 concurrent for a maximum of 100. Issues Warning if more than 100 found. Can be made configurable later if requested.
Closes #1895
2018-04-30 14:08:48 +02:00
Rhys Arkins
c356bb0349
feat: custom filenames for package files ( #1894 )
...
Renovate now comes with a variety of package managers supported, each with their own filename pattern(s). These patterns are now exposed for user configuration through the new `fileMatch` list/array configuration option, which has been added to each manager (npm, bazel, docker-compose, etc). `fileMatch` is defined as a mergeable list, meaning that users can add to the default pattern to extend the files being detected.
Closes #799
2018-04-30 13:18:51 +02:00
Rhys Arkins
b38df44b18
refactor: rename parentManager -> language ( #1890 )
...
Closes #1888
2018-04-30 07:16:34 +02:00
Rhys Arkins
706cdcc122
refactor: log manual packageFiles config
2018-04-29 20:46:11 +02:00
Ayoub Kaanich
c8ae853d58
feat: python requirements.txt support ( #1858 )
...
This PR adds basic support for requirements.txt. Currently it works on fully specified (pinned) versions only, so is disabled by default. Enable it by setting `pip_requirements.enabled = true` in config.
2018-04-28 20:39:07 +02:00
Rhys Arkins
898b913f3b
feat: deprecate pathRules ( #1881 )
...
pathRules are now migrated to packageRules.
Closes #1880
2018-04-28 14:05:39 +02:00
Rhys Arkins
4349a21484
feat: buildkite plugin renovation ( #1874 )
...
This PR adds initial support for buildkite plugin renovation.
It supports `plugin-name` or `my/plugin-name` plugins, and fully specified semver versions only (e.g. `v1.3.2`). Currently it will always propose an upgrade to the latest version available, e.g. if current version is v1.3.1 and both v1.3.2 and v2.0.0 exist then v2.0.0 will be proposed. Looks for any yml file in the `.buildkite/` directory.
Closes #1869
2018-04-27 19:54:44 +02:00
Rhys Arkins
1564150d9f
refactor: streamline debug logging
2018-04-18 21:19:00 +02:00
Rhys Arkins
a35643740b
refactor: save newDigestShort to newVersion for docker
2018-04-17 12:15:22 +02:00
Rhys Arkins
9753f9dcba
feat: modular branchName/prTitle/commitMessage templating ( #1760 )
...
This PR refactors `branchName`, `commitMessage` and `prTitle` so that they are more easily editable and hopefully more understandable. By breaking each up into subsections, users can modify one part without needing to copy/paste the entire string.
Directly editing any of these fields will now be deprecated and a warning issued.
2018-04-17 08:39:26 +02:00
Rhys Arkins
5bda10af76
logs: drop noisy locked version debug
2018-04-14 07:25:39 +02:00
Rhys Arkins
523b02fbc8
refactor: npm and semver ( #1817 )
2018-04-10 05:20:46 +02:00
Rhys Arkins
d742732e2b
fix: set isRange true for non-version docker tags
...
Closes #1806
2018-04-09 13:28:08 +02:00
Rhys Arkins
e6e28a62fb
fix: return empty travis updates if no support policy set
...
No longer defaults to supportPolicy=[‘lts’] when supportPolicy is undefined.
BREAKING CHANGE: If you wish to use travis with supportPolicy=lts, then you need to explicitly set that in node or travis config.
2018-04-09 08:29:39 +02:00
Rhys Arkins
1f63173194
fix: remove enabled=true requirement from managers
...
Simplify manager definitions by removing need for explicit enabled=true
2018-04-09 08:23:59 +02:00
Țurcanu Dragomir
2f4d5836f3
feat: Raise config error if config found within nested package.json ( #1777 )
...
Raises config error if renovate config found in a nested package.json
Closes #1742
2018-04-05 22:42:07 +02:00
Rhys Arkins
ced374ea24
fix: disable manager if parentManager is disabled
...
Closes #1778
2018-04-03 06:52:04 +02:00
Rhys Arkins
b15909f8df
feat: enabledManagers ( #1755 )
...
feat: enabledManagers
2018-03-30 17:00:51 +02:00
Rhys Arkins
5b3d7a9f86
refactor: use common manager resolve function
2018-03-30 07:38:38 +02:00
Rhys Arkins
9a36bdcf1b
refactor: rename setNewValue to updateDependency
2018-03-30 06:05:00 +02:00
Rhys Arkins
ba614d4624
fix: support quotation marks for circleci
...
Fixes #1745
2018-03-29 19:25:31 +02:00
Rhys Arkins
9a28852eb9
fix: correct logic
2018-03-29 19:09:27 +02:00
Rhys Arkins
339a767582
fix: filter out parameterised docker-compose tags
...
e.g. ${TAG}
2018-03-29 18:38:18 +02:00
Rhys Arkins
f5ecc1f4c8
logs: lower no digest from warn to info
2018-03-29 18:37:57 +02:00
Rhys Arkins
b57437940b
fix: handle quoted docker compose strings
2018-03-29 15:42:17 +02:00
Rhys Arkins
71433de9c6
logs: trace docker version list
2018-03-29 15:02:48 +02:00
Rhys Arkins
533f866c82
fix: don’t raise error for locked private dependencies
...
yarn should be able to handle this now.
Closes #1721
2018-03-29 11:34:36 +02:00
Rhys Arkins
aa3d361187
fix: throw registry failure if a tag has no manifest
2018-03-29 10:53:08 +02:00
Rhys Arkins
9d6401f823
fix: skip missing docker manifests altogether
2018-03-29 07:59:20 +02:00
Rhys Arkins
2e173c3539
fix: better fix for undefined new docker digest
2018-03-29 07:07:56 +02:00
Rhys Arkins
9b19096743
fix: filter out null docker digests
...
Closes #1739
2018-03-29 06:57:12 +02:00
Rhys Arkins
94a5240858
feat: CircleCI docker image support ( #1732 )
...
Adds support for renovating docker image definitions in CircleCI 2 config files (`.circleci/config.yml`).
Closes #1714
2018-03-28 20:12:56 +02:00
Rhys Arkins
cb3537feaa
refactor: return manager name with package files
2018-03-28 19:53:42 +02:00
Rhys Arkins
b724a411da
feat: Docker Compose support ( #1729 )
...
Adds support for renovating Docker Compose files (e.g. `docker-compose.yml`). Functionality is essentially the same as the existing `Dockerfile` capabilities, so config for `docker` is shared with `docker-compose` but may also be overridden.
Merging as disabled by default - will wait for some opt-in testing before turning it on by default.
Closes #832
2018-03-28 15:24:42 +02:00
Rhys Arkins
1c96ba54b4
chore: fix Warning typo
2018-03-28 13:33:58 +02:00
Rhys Arkins
9ab4e55bc5
chore: reduce logger.debug volume
2018-03-27 21:57:02 +02:00
Rhys Arkins
acb725beb9
fix: stringify currentVersion before trim
2018-03-27 16:25:06 +02:00
Rhys Arkins
0e658843a2
fix: don’t raise config warning issue when onboarding
2018-03-27 16:02:56 +02:00
Rhys Arkins
df0dc74e22
fix: handle meteor package.js with trailing comma
2018-03-27 15:46:29 +02:00
Rhys Arkins
b110e22218
fix: filter out deps with no current version
2018-03-27 15:13:16 +02:00
Rhys Arkins
6b7077a3ef
fix: filter and debug failed meteor extraction
2018-03-27 14:00:29 +02:00
Rhys Arkins
94892db991
fix: config warn issue only if using yarn
...
It seems that npm is able to update a lock file even if some of the non-updated deps can not be found. So the renovate halt and warning is only needed if a yarnLock file is present.
2018-03-27 13:41:45 +02:00
Rhys Arkins
a302b11a26
feat: custom docker registries ( #1707 )
...
Adds support for custom docker registries. To work (for now), registries must support anonymous public access to their v2 API. Tested against quay.io and gcr.io, including tags pagination for quay. Also needed to add a 10s timeout for registry queries to catch private/firewalled registries that we can't access.
Closes #797
2018-03-23 14:48:36 +01:00
Rhys Arkins
fc4d5fc08d
fix: add check if lerna npmClient=yarn
2018-03-22 20:35:25 +01:00
Rhys Arkins
f0cd0cb8b8
feat: raise config action issue if failing to look up locked dependency ( #1704 )
...
If an npm dependency can’t be found, and the package.json has a lock file, then Renovate will encounter lock file errors every time *any* dependency in that package.json has an update. Instead of raising PRs with an error, we instead now stop raising PRs and instead raise a config warning issue. Users can “dismiss” this by setting config option `updateLockFiles` to false.
Closes #1697
2018-03-22 11:55:58 +01:00
Rhys Arkins
3a4a0cb029
feat: updateLockFiles ( #1703 )
...
Adds an option “updateLockFiles” which defaults to true. Setting to false means that updating lock files (e.g. package-lock.json, yarn.lock and shrinkwrap.yaml) will be skipped. The main reason for doing this is for repositories that use a dependency we can’t resolve, so that they can keep updating the package.json without lock file.
2018-03-22 10:41:26 +01:00
Rhys Arkins
f0a61c8b26
chore: log custom docker host better
2018-03-22 08:58:59 +01:00
Rhys Arkins
5fa5793c3a
chore: add logging to package file detection
2018-03-21 06:02:54 +01:00
Rhys Arkins
42ea27a926
fix: skip looking up scratch base image (docker)
2018-03-21 05:16:03 +01:00
Rhys Arkins
78f5b35442
fix: skip named multistage docker builds
2018-03-20 21:42:34 +01:00
Rhys Arkins
c9f2d387fa
fix: use github tags not releases to determine node versions
...
Closes #1691
2018-03-20 15:51:37 +01:00
Rhys Arkins
3f77d676cd
fix: docker multi-stage duplicate replace ( #1662 )
...
Closes #1656
2018-03-14 12:49:47 +01:00
Rhys Arkins
1b2a319643
fix: use escaped line returns in docker regex escape
2018-03-14 12:41:43 +01:00
Rhys Arkins
bf43b2817c
fix: travis newline replace problem
2018-03-10 16:58:47 +01:00
Rhys Arkins
36afcad570
fix: handle invalid travis supportPolicy
2018-03-10 16:58:34 +01:00
Rhys Arkins
c2f0a46d9a
feat: npm shrinkwrap
...
Adds support for npm-shrinkwrap.json files.
Closes #67
2018-03-08 09:46:08 +01:00
Rhys Arkins
a2ef094485
feat: support pinned versions in .travis.yml
...
If the existing version was pinned, or if pinVersions=true, then Renovate will use pinned versions for all the new values.
Closes #1605
2018-03-06 22:18:13 +01:00
Rhys Arkins
e29c2d5aca
fix: detect quotation mark in .travis.yml
2018-03-06 22:18:13 +01:00
Rhys Arkins
453ce13278
fix: Revert "refactor: array concatenation ( #1601 )"
...
This reverts commit dd26a018c5
.
2018-03-06 15:54:39 +01:00
AndreiMargineanu
dd26a018c5
refactor: array concatenation ( #1601 )
...
Refactors all instances of .concat() to use array spread operators instead
Closes #1459
2018-03-06 12:34:39 +01:00
Rhys Arkins
7ca9918c3c
fix: don’t detect disabled managers
2018-03-05 14:56:21 +01:00
Rhys Arkins
daba8ba560
fix: add travis content filter
2018-03-05 13:50:54 +01:00
Rhys Arkins
6530480410
refactor: simplify detectPackageFiles
2018-03-04 20:03:52 +01:00
Rhys Arkins
80dbeaa563
refactor: use filePattern to detect package files
2018-03-04 16:34:55 +01:00
Rhys Arkins
5e3822d0cc
refactor: use filePattern for each manager
2018-03-04 16:09:12 +01:00
Rhys Arkins
dde5756488
feat: .nvmrc files ( #1582 )
...
Adds initial support for `.nvmrc` renovation. If the existing value is a fully-specified semver version then it will be upgraded, otherwise left alone.
Closes #1270
2018-03-04 15:52:06 +01:00
Rhys Arkins
dae287b62b
refactor: node-travis definitions ( #1583 )
...
Retains the "node" configuration object but moves enabling/disabling to "travis". Also removes the default `supportPolicy` from config.
2018-03-04 07:08:19 +01:00
Rhys Arkins
33bcbdd91d
fix: add repositoryUrl to travis results
2018-03-03 22:25:27 +01:00
Rhys Arkins
faa4cc6171
fix: travis metadata and formatting
...
Updates travis config and logic to use same variables as for other managers. This fixes the onboarding PR.
Fixes #1551
2018-03-03 20:53:54 +01:00
Rhys Arkins
cd9218444d
refactor: move node package lookup to node helper
2018-03-03 17:36:45 +01:00
Rhys Arkins
886a3d05bf
refactor: rename ‘node’ manager to ‘travis’
2018-03-03 15:35:43 +01:00
Rhys Arkins
3c56f8aeb6
refactor: move manager-specific code under lib/manager ( #1573 )
...
Refactors all non-npm code to live inside lib/manager/*
2018-03-03 14:39:39 +01:00
Rhys Arkins
bb2fc1b7ca
refactor: move npm extract from workers to manager
2018-03-01 10:21:26 +01:00
Rhys Arkins
cf336a0b21
refactor: use manager not packageFile
2018-02-28 19:01:35 +01:00