Skip to content

Commit ceabc28

Browse files
committed
fix: update template
1 parent 141205e commit ceabc28

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"description": "<%= library.description %>",
55
"keywords": [
6-
<%= library.keywords.map(k => `"${k}"`).join(",\n ") %>
6+
<%- library.keywords.map((k) => `"${k}"`).join(",\n ") %>
77
],
88
"main": "dist/lib/<%= library.name %>.js",
99
"typings": "dist/types/<%= library.name %>.d.ts",

template/src/lib-name.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// TODO: add tests
22

3-
import { add } from "./<%= library.name %>";
3+
import { add } from './<%= library.name %>';
44

55
describe('add', () => {
66
it('adds two numbers', () => {

0 commit comments

Comments
 (0)