Steffan Halvorsen

Results 11 comments of Steffan Halvorsen

@deysudip Can you please share your code anyway? It would be really helpful.

> 2.0 supports ESM ```js import dayjs from 'https://cdn.jsdelivr.net/npm/[email protected]/dist/index.mjs' console.log(dayjs()) // It works 👍🏼 ```

@marshallswain said you discussed to add `app.service(‘users’, null)`into Dove a month ago in the Slack channel. Has this been implemented yet and does it mean featersjs will support unregistering services...

@daffl Can you please add `feathers.esm.js` to dist folder on build? https://unpkg.com/browse/@feathersjs/[email protected]/dist/ Then we can import feathers client using es modules from CDN. Ex. ```html import feathers from 'https://unpkg.com/@feathersjs/[email protected]/dist/feathers.esm.js' const...

Looks like it is @feathersjs/[email protected] which are causing the problem: ``` > @feathersjs/[email protected] compile:esm > shx rm -rf esm/ && tsc --target es2020 --module es2020 --outDir esm/ --moduleResolution node >...

Same here **Edit:** I solved it this way: ```js let oauth2 = new OAuth2Strategy({ authorizationURL: protocol + '://' + base + '/auth/oauth2/authorize', tokenURL: protocol + '://' + base + '/auth/oauth2/token',...

@MarshallOfSound Sorry, guess I didn't look close enough, but still doesn't solve the problem for me. **Here is a summary for how I got into this and hopefully you have...

I created a PR which fixes this, all tests are passing. As a workaround while this is waiting for approvement, I also published a new package on npm with this...

Sorry, it already works. Only thing remains is the e2e test which I dont have time for.