Kenny Smith

Results 11 comments of Kenny Smith

This bit me on a new install and took awhile to figure out where the issue was. I think it's worth exploring how to make nvm/node load faster but I'd...

@Adeher can you give a code sample of how you're wrapping React Router 1 with FluxComponent? Or @agile116 did you ever get this working another way? I'm trying to shift...

It looks like this is causing a problem with my frontend build. `lib/Flux.js` requires the flux dispatcher (`var _Dispatcher = require('flux');`) but my webpack build looks like it's requiring `lib/Flux.js`...

I'm currently getting past this by explicitly telling webpack how to require flux but this seems pretty hacky. ``` resolve: { alias: { 'flux': path.join(__dirname, '../node_modules/flummox/node_modules/flux') } }, ```

@jedrichards I ran into this same issue and just stopped serializing/deserializing in my store's static methods so they look like this. ``` static serialize (state) { return state; } static...

Yeah, the double serializing is a real problem. Right now `serialize()` at the higher level (in Flux.js) is just taking the output from the store's `serialize()` and assigning it to...

Something like: ``` const serializedChunks = []; Object.keys(stateTree).map(function(key){ let wrappedValue = '"' + key + '":' + stateTree[key]; serializedChunks.push(wrappedValue); }); const finalOutput = '{' + serializedChunks.join(',') + '}'; ```

@jedrichards I just submitted a PR that removes the warning and adds some explanation to the docs. We'll see if that's a problem for anyone but that's how I'm using...

Just hit this. Here's my lame little hack in the meantime. ``` let a,b const { a: x, b: y } = myFunc() a = x b = y ```...

I've got the following for a phrase and it's still executing in gnome terminal. ``` "filter": { "regex": "^((?!gnome-terminal).)*$", "isRecursive": false } ``` This is in AutoKey `0.95.6` and the...