antonsamper

Results 11 comments of antonsamper

The new router wasn't released as part of version 1.4. An unstable version can be used but i rather wait until Angular 1.5 when it will hopefully be officially released....

csso wont be removed until cssnano or a better alternative can be found #32

cssnano as mentioned on a previous thread is quite slow however, this is being addressed on v4 https://github.com/ben-eb/cssnano/issues/88

this will come in handy: https://github.com/guzart/gulp-ng-constant

@kaihendry You're mixing promises and streams. Why dont you just return a promise using the SDK using the `promise()` method? ```javascript s3.getObject(params).promise().then(...).catch(...) ```

I've encountered this recently and i haven't found an elegant way to do this. The following thread is probably one of the better sources of information about this: https://github.com/facebook/create-react-app/issues/6880 My...

I'm happy to contribute. @PachowStudios Is it worth creating a set of very basic typings and merging that? The other can build on top. Can you share what you have...

It's the table that saves the migration information. db name is `test` ``` Error retrieving migrations: Error: ER_NO_SUCH_TABLE: Table 'test.migration' doesn't exist at Query.Sequence._packetToError (/Users/antonsamper/WebstormProjects/test-project/node_modules/loopback-connector-mysql/node_modules/mysql/lib/protocol/sequences/Sequence.js:48:14) at Query.ErrorPacket (/Users/antonsamper/WebstormProjects/test-project/node_modules/loopback-connector-mysql/node_modules/mysql/lib/protocol/sequences/Query.js:83:18) at Protocol._parsePacket...

@mrfelton are you able to replicate the problem?

@sundeepgupta In general, I agree that migrations should run on all environments but it does depend on what the migration is doing. In my case I was using them to...