Results 18 comments of Rajesh Sharma

Hi, I have this setup. The `asset_url` is being generated correctly, but the files are not being dumped. What am I missing! ``` php $loader = new \Twig_Loader_Filesystem($paths); $twig =...

Okay, I got it working. It was the `$template`, which was not string. I got it working by changing `$resource = new TwigResource($loader, $template);` to `$resource = new TwigResource($loader, $template->getFileName());`...

and how do you generate `stats.json`!!

@grahamlyus I have this, but `npm run build` does not generate `stats.json` ``` plugins: [ new StatsPlugin('stats.json', {chunkModules: true}), new BundleAnalyzerPlugin({generateStatsFile: true, analyzerMode: 'disabled'}) ] ```

forceUpdate doesn't seem to be working randomly for me too

Thinking about it a bit... This would open up a possibility to support offline capabilities. A model can be assigned a transient ID while its being synced to the backend....

@mweststrate did you have a try on this? Heres what I have tried identifier.ts ``` reconcile(current: INode, newValue: string) { if (current.storedValue !== newValue && current.parent) { current.parent!.updateIdentifier(newValue) } return...

@dunglas looks like `go-jose` only support jwks as string (I may be wrong, I just had a quick look). So we would need to handle the fetching and caching the...

Hi @dunglas I might be able to give this time in coming weeks. Been super busy!

@dunglas Opened a draft PR here https://github.com/dunglas/mercure/pull/813