Dewey Vozel
Dewey Vozel
Of course, I got here because I'm having this completely unexpected issue too. Maybe I'm not entirely understanding the discussion but it seems the push back boils down to 2...
I see that #37 is closed in favor this one. I would love this feature to be added. I use the ddterm (dropdown terminal) extension and every time I hide...
Hopefully the complexity of that configuration screen won't be overwhelming to users and there will still be a default configuration for anything not specifically overwritten.
If I listen for both MouseDownExt and MouseUpExt and mark both as Handled, it seems to do what I want. If that's the correct/best solution, please close.
When I attempt to publish to GitHub packages, I get `npm ERR! 401 Unauthorized - PUT https://npm.pkg.github.com/@xxx- Your request could not be authenticated by the GitHub Packages service. Please ensure...
Sorry, I forgot about this and didn't follow up after I "solved" it. The github token did work for me but I had to supply `NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}`. None...
For completeness, what _seems_ to be working for me is something like this: .github/semantic.yml ```yaml titleOnly: true ``` .github/workflows/develop-branch.yml (also in our master-branch.yml) ```yaml name: Build, Test and Package For...
Was reminded of another need for this tonight when I clicked on the thumbnail that was a placeholder for a future live video. Now it's gone and I'll probably never...
I ended up using a task that processes after the dgeni task: ``` gulp.task('fix-json', function(){ return gulp.src(['./src/components-data.json']) .pipe(replace(/href\s?=\s?"(.*?)"/g, 'href=\\"$1\\"')) .pipe(gulp.dest('./src')); }); ``` It seems like something that should be reasonable...