Skip to content

Commit

Permalink
Stub out new rollup plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Oct 27, 2023
1 parent 2ff905b commit 12a6e0a
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@
// import.meta.env.DEV with DEBUG and
// import.meta.env.PROD with !DEBUG
// using the existing babel-plugin-debug-macros with fake-import from `@glimmer/env`
export default function importMetaEnvToGlimmerEnv(options = {}) {
export default function importMetaEnvToGlimmerEnv(_options = {}) {
return {
transform(code) {
console.log(code);
transform(_code) {
// console.log(code);
return '';
},
};
}

0 comments on commit 12a6e0a

Please sign in to comment.