We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to version the assets of my polymer web, but all of my element id's are replaced wrongly.
e.g <dom-module id="cr-header.fd743a17">
<dom-module id="cr-header.fd743a17">
gulp.task('version-assets', ['vulcanize'], function () { if (production) { gulp .src( [ folder.build + 'app/src/**/**/*.html', folder.build + 'app/src/**/*.js', folder.build + 'app/src/**/*.css', folder.build + 'app/index.html', folder.build + 'app/error-404.html', ]) .pipe(RevAll.revision({ dontRenameFile: [/^\/favicon.ico$/g, /^\/index.html/g, /^\/error-404.html/g] })) .pipe(revdel()) .pipe(gulp.dest(folder.build + 'app/')) .pipe(RevAll.manifestFile()) .pipe(gulp.dest(folder.build + 'app/src')); } });
Some idea?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to version the assets of my polymer web, but all of my element id's are replaced wrongly.
e.g
<dom-module id="cr-header.fd743a17">
Some idea?
The text was updated successfully, but these errors were encountered: