Skip to content

Commit dea9a89

Browse files
authored
Merge pull request #10 from emyann/fix/Template-Add-GitIgnore
Fix(Template): Add missing .gitignore File
2 parents 0786d87 + 4793462 commit dea9a89

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"url": "https://github.com/emyann/typescript-webpack-starter"
1414
},
1515
"author": "yrenaudin",
16-
"license": "ISC",
16+
"license": "MIT",
1717
"devDependencies": {
1818
"create-ts-lib": "^0.0.8"
1919
}

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-ts-lib",
3-
"version": "0.0.8",
3+
"version": "0.0.9",
44
"description": "Create your TypeScript module with no nuild configuration",
55
"scripts": {
66
"test": "echo \"Error: no test specified\" && exit 1"

packages/cli/template/.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Build results
2+
dist/
3+
typings/**/*
4+
5+
# Others
6+
~$*
7+
*~
8+
node_modules/
9+
src/build/
10+
coverage/

0 commit comments

Comments
 (0)