Scott Vitale

Results 34 comments of Scott Vitale

Really looking forward to having this integrated - anything I can do to help push it across the line?

The new command works well for me. I think a follow-on integration with ember-cli-deploy would be useful, but otherwise all is good. Anything else you want to test before this...

I vote to drop this PR and recommend @bgentry's addon for ember-cli-deploy integration. As much as I'd like all this functionality to be under one addon "roof", I think the...

Worked great for me, @bgentry. Thanks for putting it together!

Getting the revisions to match took me a few attempts as well. In `deploy.js`, make sure to choose `git-commit` as the `revision-data` type: ``` 'revision-data': { type: 'git-commit' } ```...

I guess I was leaning towards the perspective that `ember-cli-deploy` is really just a build pipeline. It doesn't have to include a true deploy step if that's not desired. So...

+1 Thanks @neta79, I'm cloning directly from your branch. @monkeython, love to see this get merged in!

You can achieve this using refs: ``` class MyComponent extends Component { constructor(props) { super(props); this.dropdownRef = React.createRef(); } componentDidMount() { const { value, options } = this.props; const selectedIdx...

I'd love to see this get merged!

This worked for my first deploy. On subsequent deploys the upload succeeded, but S3 threw up a 403 when I tried to load the site in a browser. Updating all...