Daniel Stockman
Daniel Stockman
Near as I can tell, the source property is used to [create unique cache keys](https://github.com/apollographql/graphql-tag/blob/f12fbd50fb59a8849d6d19ec899f29451df684d8/src/index.js#L18) during [fragment processing](https://github.com/apollographql/graphql-tag/blob/f12fbd50fb59a8849d6d19ec899f29451df684d8/src/index.js#L40). I think it's safe to eagerly [normalize](https://github.com/apollographql/graphql-tag/blob/f12fbd50fb59a8849d6d19ec899f29451df684d8/src/index.js#L8) the value in this plugin,...
[`lerna publish --conventional-commits`](https://github.com/lerna/lerna#--conventional-commits) supports per-project changelogs in `--independent` mode, though admittedly not from `lerna-changelog` directly.
Really begs for a `@lerna/config` package that exposes how lerna reads its packages config...
PRs welcome.
@xxholly32 I am not the active maintainer of `lerna-changelog`, please open a new issue with a link back to this issue.
@ThisIsMissEm It's an interesting variation, to be sure. I think for the most part, `dist-tags` are still the way to go to ensure the unity of a given release. There...
Thanks so much for looking into this, I apologize for not responding earlier on the yui-support thread. Windows is definitely our Achilles' heel on this project, as neither myself nor...
@MarkKharitonov What happens when you provide a fully-valid Windows `rootPath` (via path.join) when using the `webRoot` config? ``` var path = require('path'); // ... app.get('/combo', combo.combine({ rootPath: path.join(__dirname, 'web'), webRoot:...
Actually, no it doesn't. I asked you if the valid path created by `path.join(__dirname, "web")` worked in the `webRoot` config, not a concatenation of `__dirname` and `"/web/"` (because the plain...
Thanks, I can rule that out now. I didn't know Windows accepted both delimiters. Crazy. On Sat, Jan 11, 2014 at 7:53 PM, MarkKharitonov [email protected] wrote: > Using either path.join...