Skip to content

Commit

Permalink
lint: .
Browse files Browse the repository at this point in the history
  • Loading branch information
HHongSeungWoo committed Oct 10, 2023
1 parent bf69539 commit 798353a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var pkg = require('./package.json')

// When building UMD or ES6 module, mark dependencies as external
export const moduleExternals = Object.keys(pkg.dependencies)
export const moduleGlobals = { three: 'three' }
export const moduleGlobals = {three: 'three'}
export const umdGlobals = {
'chroma-js': 'chroma',
'signals': 'signalsWrapper',
Expand Down Expand Up @@ -39,7 +39,7 @@ function glsl () {
.replace(/ {2,}/g, ' ')
.replace(/ *\n */g, '\n')
)
var register = 'ShaderRegistry.add(\'' + key + '\', ' + shader + ');'
var register = "ShaderRegistry.add('" + key + "', " + shader + ');'
code = registryImport + register
return { code: code, map: { mappings: '' } }
}
Expand All @@ -58,7 +58,7 @@ function text () {
}

export const plugins = [
typescript({ sourceMap: true, inlineSources: true }),
typescript({sourceMap: true, inlineSources: true}),
resolve({
jsnext: true,
main: true,
Expand Down

0 comments on commit 798353a

Please sign in to comment.