Skip to content

Commit 8597ae3

Browse files
committed
Output to dist/ instead of /lib
1 parent 40d3fd1 commit 8597ae3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
lib/
2-
temp/
1+
dist/
2+
temp/
33
node_modules/
44
temp_img/
55

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
"name": "notion-pull",
33
"version": "0.0.0-development",
44
"description": "Download Notion pages as markdown and image files, preserving hierarchy and enabling workflow properties. Works with Docusaurus.",
5-
"main": "./lib/src/index.js",
6-
"bin": "lib/index.js",
5+
"main": "./dist/index.js",
6+
"bin": "dist/index.js",
77
"files": [
8-
"lib/**/*"
8+
"dist/**/*"
99
],
1010
"scripts": {
1111
"build": "tsc",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
1515
// "sourceMap": true, /* Generates corresponding '.map' file. */
1616
// "outFile": "./", /* Concatenate and emit output to single file. */
17-
"outDir": "./lib/", /* Redirect output structure to the directory. */
17+
"outDir": "./dist/", /* Redirect output structure to the directory. */
1818
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
1919
// "composite": true, /* Enable project compilation */
2020
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */

0 commit comments

Comments
 (0)