Results 105 issues of Andy Ray

webpack.config.js: ``` module.exports = { entry: { index: "./assets/index.html", }, modules: [ loaders: { {test: /\.html$/, loader: PathRewriterPlugin.rewriteAndEmit({ name: '[name].html', loader: 'file' })}, ``` Here's index.html: ``` ``` Here's what...

If you change any source file while webpack is running, the plugin does not rewrite the paths in the built html file. You have to stop and re-run webpack.

Right now it is not clear how `PathRewriterPlugin` is supposed to access the files it touches. Are you supposed to `require()` the files? Are you supposed to add them as...

`open 'http://www.google.com'` in a terminal on OSX will correctly open a link in the default system browser. Out of the box clickable.vim does nothing with `open -a "Firefox"` - I'm...

# Bug report ## Description / Observed Behavior ```tsx ``` Combined with an inner component of ```tsx const { data } = `useSWR('a', () => { console.log('I should never be...

https://github.com/rmosolgo/graphql-ruby-demo/blob/master/app/graph/queries/readLukesFriends.graphql Running this query ``` query readLukesFriends { luke: human(id: 1000) { friends { name } } } ``` http://graphql-ruby-demo.herokuapp.com/graphiql?query=%7B%0A%20%20luke%3A%20human(id%3A%201000)%20%7B%0A%20%20%20%20friends%20%7B%20name%20%7D%0A%20%20%7D%0A%7D Returns "Field 'name' doesn't exist on type 'CharacterConnection'" But this...

I have a KVM whose shortcut is scrolllock + scrolllock + another key, like `scrolllock + scrolllock +1` to pick the first PC, or `scrolllock + scrolllock + up` I've...

enhancement

On your own demo (in chrome on mac osx): http://xing.github.io/wysihtml5/examples/advanced.html Let's inspect parser rules: ``` $ wysihtml5ParserRules Object {classes: Object, tags: Object} classes: Object tags: Object a: Object check_attributes: Object...

I installed checkstyle via homebrew, and this command works fine: ``` checkstyle -c checkstyle.xml app/classes/MyClass.cls Line contains a tab character. [FileTabCharacter] ``` This plugin does nothing however. The only setting...

enhancement