Skip to content

Commit

Permalink
fix: update template
Browse files Browse the repository at this point in the history
  • Loading branch information
glebbash committed Apr 11, 2021
1 parent 141205e commit ceabc28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"description": "<%= library.description %>",
"keywords": [
<%= library.keywords.map(k => `"${k}"`).join(",\n ") %>
<%- library.keywords.map((k) => `"${k}"`).join(",\n ") %>
],
"main": "dist/lib/<%= library.name %>.js",
"typings": "dist/types/<%= library.name %>.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion template/src/lib-name.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// TODO: add tests

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

describe('add', () => {
it('adds two numbers', () => {
Expand Down

0 comments on commit ceabc28

Please sign in to comment.