Skip to content

Commit 5cd80c4

Browse files
author
Jack Steam
committed
Comment log messages
1 parent c909824 commit 5cd80c4

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

src/index.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export function bundleImports({
108108
name,
109109

110110
options({ plugins: p = [] }: RollupOptions) {
111-
console.log('🚀: options')
111+
// console.log('🚀: options')
112112

113113
// Remove self from plugin array
114114
const _p = p
@@ -151,8 +151,8 @@ export function bundleImports({
151151
if (!id.startsWith('code ') && !id.startsWith('path '))
152152
return null
153153

154-
console.log('🚀: load')
155-
console.log('🚀: id', id)
154+
// console.log('🚀: load')
155+
// console.log('🚀: id', id)
156156

157157
const input = id.replace(regex, '')
158158
const importAs = id.startsWith('code') ? 'code' : 'path'
@@ -173,25 +173,25 @@ export function bundleImports({
173173
...inputOptions,
174174
}
175175

176-
console.log('🚀: config', config)
176+
// console.log('🚀: config', config)
177177
const bundle = await rollup(config)
178-
console.log('🚀: post-bundle')
178+
// console.log('🚀: post-bundle')
179179

180180
bundle.watchFiles.forEach((file) => {
181181
this.addWatchFile(file)
182182
})
183183

184-
console.log('🚀: pre-generateCode', {
185-
input,
186-
output,
187-
})
184+
// console.log('🚀: pre-generateCode', {
185+
// input,
186+
// output,
187+
// })
188188

189189
const code = await generateCode(bundle, {
190190
input,
191191
output,
192192
})
193193

194-
console.log('🚀: post-generateCode')
194+
// console.log('🚀: post-generateCode')
195195

196196
if (importAs === 'code') {
197197
return {

0 commit comments

Comments
 (0)