Skip to content

Commit

Permalink
Fix references to js files instead of html files
Browse files Browse the repository at this point in the history
  • Loading branch information
TimvdLippe committed Apr 20, 2018
1 parent 206cf72 commit dfcaadb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ gulp.task('closure', ['generate-externs'], () => {
const project = new PolymerProject({
shell: `./${entry}`,
fragments: [
'bower_components/shadycss/apply-shim.html',
'bower_components/shadycss/custom-style-interface.html'
'node_modules/@webcomponents/shadycss/entrypoints/apply-shim.js',
'node_modules/@webcomponents/shadycss/entrypoints/custom-style-interface.js'
],
extraDependencies: [
addClosureTypes.importPath,
Expand Down Expand Up @@ -219,8 +219,8 @@ gulp.task('estimate-size', ['clean'], () => {
const project = new PolymerProject({
shell: POLYMER_LEGACY,
fragments: [
'bower_components/shadycss/apply-shim.html',
'bower_components/shadycss/custom-style-interface.html'
'node_modules/@webcomponents/shadycss/entrypoints/apply-shim.js',
'node_modules/@webcomponents/shadycss/entrypoints/custom-style-interface.js'
]
});

Expand Down Expand Up @@ -281,7 +281,7 @@ gulp.task('generate-typescript', async () => {
});

gulp.task('update-version', () => {
return gulp.src('lib/utils/boot.html')
return gulp.src('lib/utils/boot.js')
.pipe(replace(/(window.Polymer.version = )'\d+\.\d+\.\d+'/, `$1'${require('./package.json').version}'`))
.pipe(gulp.dest('lib/utils'));
});

0 comments on commit dfcaadb

Please sign in to comment.