Skip to content

Commit 09edca8

Browse files
chore: switch from lib to dist for output (#39)
1 parent 7cdb836 commit 09edca8

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lib
1+
dist

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
lib/
1+
dist/
22
node_modules/

.markdownlintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
lib/
1+
dist/
22
node_modules/

.prettierignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lib/
1+
dist/

.releaserc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"@semantic-release/git",
1616
{
1717
"assets": [
18+
"dist",
1819
"docs",
19-
"lib",
2020
"package.json",
2121
"README.md",
2222
"src",

cspell.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"dictionaries": ["typescript"],
3-
"ignorePaths": ["lib", "node_modules", "**/*.yml"],
3+
"ignorePaths": ["dist", "node_modules", "**/*.yml"],
44
"words": ["commitlint"]
55
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"declarationMap": true,
55
"esModuleInterop": true,
66
"moduleResolution": "node",
7-
"outDir": "lib",
7+
"outDir": "dist",
88
"skipLibCheck": true,
99
"sourceMap": true,
1010
"strict": true,

0 commit comments

Comments
 (0)