mirror of
https://github.com/vale981/apollo-server
synced 2025-03-05 17:51:40 -05:00

As determined in https://github.com/renovateapp/config-help/issues/23#issuecomment-377202632, it seems that it's not possible to have this sort of inherited configuration. It's possible that when I first introduced this behavior that this behavior was on its way out (and the breaking change in Renovate v11 on its way in). Luckily, Renovate's shared configuration option still allows this to be relatively painless and our `apollo-docs` shared configuration[0] does most of the heavy lifting here so there won't be too much Renovate toe-stepping. If this works well in the `apollo-server` repository, I'll transplant this change to the other docs repositories[1]. [0] https://github.com/apollographql/renovate-config-apollo-docs [1] https://github.com/meteor/hexo-theme-meteor
24 lines
591 B
JSON
24 lines
591 B
JSON
{
|
|
"name": "hexo-site",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"hexo": {
|
|
"version": "3.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"apollo-hexo-config": "1.0.5",
|
|
"chexo": "1.0.4",
|
|
"hexo": "3.7.0",
|
|
"hexo-renderer-ejs": "0.3.1",
|
|
"hexo-renderer-less": "0.2.0",
|
|
"hexo-renderer-marked": "0.3.2",
|
|
"hexo-server": "0.3.1",
|
|
"meteor-theme-hexo": "1.0.3"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run build && chexo apollo-hexo-config -- server",
|
|
"build": "chexo apollo-hexo-config -- generate",
|
|
"clean": "hexo clean",
|
|
"test": "npm run clean; npm run build"
|
|
}
|
|
}
|