fluent-transpiler 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -32,7 +32,6 @@ export const compile = (src, opts) => {
32
32
  // cast to template literal
33
33
  options.excludeValue = '`' + options.excludeValue + '`'
34
34
  }
35
- console.log({ options })
36
35
 
37
36
  const metadata = {}
38
37
  const exports = []
@@ -132,7 +131,7 @@ export const compile = (src, opts) => {
132
131
  return ''
133
132
  }
134
133
 
135
- const templateStringLiteral =
134
+ let templateStringLiteral =
136
135
  data.value && compileType(data.value, data.type)
137
136
 
138
137
  if (options.excludeValue === templateStringLiteral) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluent-transpiler",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Transpile Fluent (ftl) files into optimized, tree-shakable, JavaScript EcmaScript Modules (esm).",
5
5
  "main": "index.js",
6
6
  "type": "module",