We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 141205e commit ceabc28Copy full SHA for ceabc28
template/package.json
@@ -3,7 +3,7 @@
3
"version": "0.0.0",
4
"description": "<%= library.description %>",
5
"keywords": [
6
- <%= library.keywords.map(k => `"${k}"`).join(",\n ") %>
+ <%- library.keywords.map((k) => `"${k}"`).join(",\n ") %>
7
],
8
"main": "dist/lib/<%= library.name %>.js",
9
"typings": "dist/types/<%= library.name %>.d.ts",
template/src/lib-name.spec.ts
@@ -1,6 +1,6 @@
1
// TODO: add tests
2
-import { add } from "./<%= library.name %>";
+import { add } from './<%= library.name %>';
describe('add', () => {
it('adds two numbers', () => {
0 commit comments