Aaron Chambers
Aaron Chambers
I've had success with having the lightning server simply forward the request to the CDN so that the service worker file is uploaded as an asset like anything else. No...
@byrnedo Use https://github.com/achambers/ember-cli-deploy-git-revision-data instead of -revision-data and set the revisionKey using the tag from the data added to context.
Thanks for the suggestion @mwpastore. As you can see from the issue you referenced, this is something we've been thinking about. This will also require a change to the [ember-cli-deploy/ember-cli-deploy-revision-data](https://github.com/ember-cli-deploy/ember-cli-deploy-revision-data)...
@saverio-kantox This is because the default selector for the `meta` tag doesn't match on that meta tag. eg ```javascript meta: { selector: 'meta[name*="/config/environment"]', attributes: ['name', 'content'] } ``` You will...
@sescobb27 This does not seem like something that belongs in this plugin. This plugin's responsibility is to manage a bootstrap file in redis. This does however sound like something you...
I suspect that [this line](https://github.com/ember-cli-deploy/ember-cli-deploy-revision-data/blob/master/index.js#L66) should probably pass the project root (`context.project.root()` from memory) in as the path as opposed to the dist dir. I can't think of any reason...
@mcfiredrill said: > FWIW I attempted to implement @achambers ' proposed fix, but the project property wasn't available on the context for me. I find this strange as you can...
@mcfiredrill I just saw it then. Are you sure the `project` is missing? I got the root prop slightly wrong. It's actually `project.getProjectRoot()` Could that have been your issue?
Hmmm. That's surprising to me. I'll have a look when I get to work