Skip to content

Commit 4d7896c

Browse files
committed
feat: publish with @sillsdev scope
1 parent e31545f commit 4d7896c

File tree

4 files changed

+10027
-7586
lines changed

4 files changed

+10027
-7586
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,10 @@ i18n/
55
node_modules/
66
version.json
77
docs/
8-
yarn-error.log
8+
yarn-error.log
9+
.yarn/*
10+
!.yarn/patches
11+
!.yarn/plugins
12+
!.yarn/releases
13+
!.yarn/sdks
14+
!.yarn/versions

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

package.json

Lines changed: 26 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
{
2-
"name": "@sillsdev/docu-notion",
3-
"description": "Download Notion pages as markdown and image files, preserving hierarchy and enabling workflow properties. Works with Docusaurus.",
4-
"main": "./dist/index.js",
5-
"bin": "dist/index.js",
6-
"files": [
7-
"dist/**/*"
8-
],
92
"scripts": {
103
"test": "jest",
114
"build": "yarn test && tsc && cp ./src/css/*.css dist/",
@@ -24,28 +17,6 @@
2417
"pull-sample": "yarn ts -n $DOCU_NOTION_INTEGRATION_TOKEN -r $DOCU_NOTION_SAMPLE_ROOT_PAGE -m ./sample --locales en,es,fr,de --log-level verbose",
2518
"pull-sample-with-paths": "yarn ts -n $DOCU_NOTION_INTEGRATION_TOKEN -r $DOCU_NOTION_SAMPLE_ROOT_PAGE -m ./sample --img-output-path ./sample_img"
2619
},
27-
"repository": {
28-
"type": "git",
29-
"url": "git+https://github.com/sillsdev/docu-notion.git"
30-
},
31-
"license": "MIT",
32-
"author": {
33-
"name": "SIL Language Software Development",
34-
"email": "sillsdev@users.noreply.github.com",
35-
"url": "https://github.com/sillsdev"
36-
},
37-
"engines": {
38-
"node": ">=12.0"
39-
},
40-
"keywords": [
41-
"docusaurus",
42-
"notion",
43-
"markdown"
44-
],
45-
"bugs": {
46-
"url": "https://github.com/sillsdev/docu-notion/issues"
47-
},
48-
"homepage": "https://github.com/sillsdev/docu-notion#readme",
4920
"//file-type": "have to use this version before they switched to ESM, which gives a compile error related to require()",
5021
"//node-fetch@2.6.6file-type": "have to use this version before they switched to ESM, which gives a compile error related to require()",
5122
"//chalk@4": "also ESM related problem",
@@ -88,9 +59,34 @@
8859
"ts-node": "^10.2.1",
8960
"typescript": "^4.6.4"
9061
},
62+
"name": "@sillsdev/docu-notion",
63+
"description": "Download Notion pages as markdown and image files, preserving hierarchy and enabling workflow properties. Works with Docusaurus.",
64+
"license": "MIT",
65+
"author": {
66+
"name": "SIL Language Software Development",
67+
"email": "sillsdev@users.noreply.github.com",
68+
"url": "https://github.com/sillsdev"
69+
},
70+
"keywords": [
71+
"docusaurus",
72+
"notion",
73+
"markdown",
74+
"documentation"
75+
],
76+
"bugs": {
77+
"url": "https://github.com/sillsdev/docu-notion/issues"
78+
},
79+
"homepage": "https://github.com/sillsdev/docu-notion#readme",
80+
"packageManager": "yarn@3.4.1",
81+
"main": "./dist/index.js",
82+
"bin": "dist/index.js",
83+
"files": [
84+
"dist/**/*"
85+
],
9186
"release": {
9287
"branches": [
93-
"main"
88+
"main",
89+
"release"
9490
]
9591
},
9692
"publishConfig": {

0 commit comments

Comments
 (0)