Alexander Vassbotn Røyne-Helgesen
Alexander Vassbotn Røyne-Helgesen
Related to https://github.com/goldhand/sw-precache-webpack-plugin/issues/79 I think
With this config: new SWPrecacheWebpackPlugin({ cacheId: '', filename: '-sw.js', minify: false, maximumFileSizeToCacheInBytes: 3500000, filepath: path.join(assetsDir, '/-sw.js'), staticFileGlobs: ['dist/assets/index.html', 'dist/assets/down.html'], mergeStaticsConfig: true, staticFileGlobsIgnorePatterns: [/-sw\.js$/i], stripPrefix: 'dist/assets/', navigateFallback: '/index.html' }) I get:...
I experience something similar. I am producing my index with the `html-webpack-plugin` and the generated file is at `assets\index.html`, with express route, the routing is basically `/index.html => /assets/index.html`. When...
@erdoganoksuz I don't know if it helps your issue, but here is my working config: new SWPrecacheWebpackPlugin({ cacheId: 'da-project', filename: 'da-project-sw.js', minify: true, maximumFileSizeToCacheInBytes: 3500000, filepath: path.join(assetsDir, '/da-project-sw.js'), staticFileGlobs: ['dist/assets/index.html',...
Experiencing the same issue. the token is set, checked with `echo $CONVENTIONAL_GITHUB_RELEASER_TOKEN`
@seiyria you can customize your own templates if you are using a configuration file. Best bet might be using a `.grenrc.js` file with something like this: ```javascript module.exports = {...
@seiyria perhaps you are looking for a feature to set the desired date format via options? Something like this? ```json { "template": { "locale": "sv-SE", ... } } ```
You rarely want to set the date format to anything other than the locale for the application, so why would you? What is the use case for this? You can...
But, regardless, I support a feature to specify the date format, either by locale, or template strings
Yeah, you can use `moment.js` in that configuration file :)