We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5207f2 commit b8d660fCopy full SHA for b8d660f
script/build.js
@@ -7,6 +7,6 @@ const output = input.replace('<% pattern %>', pattern) + '\n';
7
fs.writeFileSync('./index.js', output);
8
9
const inputModule = fs.readFileSync('./src/index.mjs', 'utf8').toString().trim();
10
-const outputModule = inputModule.replace("<% pattern %>", pattern) + "\n";
+const outputModule = inputModule.replace('<% pattern %>', pattern) + '\n';
11
12
fs.writeFileSync('./index.mjs', outputModule);
0 commit comments