Luke Clifton

Results 2 issues of Luke Clifton

# Issue summary The docs say to detect scope changes in this way: https://github.com/Shopify/shopify-node-api/blob/main/docs/usage/oauth.md#detecting-scope-changes ``` if (!Shopify.Context.SCOPES.equals(session.scope)) { // Scopes have changed, the app should redirect the merchant to OAuth...

If i run this code, everything works fine: ``` gulp.task('zip-build', function() { return gulp.src([ '../admin/web/css/diamond-matrix-widget.css', '../admin/web/js/diamond-matrix-widget.js' ]) .pipe(zip('diamond-matrix-widget.zip')) .pipe(gulp.dest('../admin/web')) }); ``` However if i include the **.js** file first and...