Skip to content

Commit cabe112

Browse files
committed
fix: properly label alpha versions as alpha
1 parent 76aef7d commit cabe112

File tree

3 files changed

+26
-31
lines changed

3 files changed

+26
-31
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ sample_img/
44
i18n/
55
node_modules/
66
version.json
7-
docs/
7+
docs/
8+
*.orig

package.json

Lines changed: 23 additions & 29 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": "vitest",
114
"build": "npm run test -- --run && tsc && cp ./src/css/*.css dist/",
@@ -24,28 +17,6 @@
2417
"pull-sample": "npm run 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": "npm run 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": "[email protected]",
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
"//[email protected]": "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",
@@ -94,6 +65,29 @@
9465
"main"
9566
]
9667
},
68+
"name": "@sillsdev/docu-notion",
69+
"description": "Download Notion pages as markdown and image files, preserving hierarchy and enabling workflow properties. Works with Docusaurus.",
70+
"license": "MIT",
71+
"author": {
72+
"name": "SIL Language Software Development",
73+
"email": "[email protected]",
74+
"url": "https://github.com/sillsdev"
75+
},
76+
"keywords": [
77+
"docusaurus",
78+
"notion",
79+
"markdown",
80+
"documentation"
81+
],
82+
"bugs": {
83+
"url": "https://github.com/sillsdev/docu-notion/issues"
84+
},
85+
"homepage": "https://github.com/sillsdev/docu-notion#readme",
86+
"main": "./dist/index.js",
87+
"bin": "dist/index.js",
88+
"files": [
89+
"dist/**/*"
90+
],
9791
"publishConfig": {
9892
"access": "public"
9993
},

release.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
branches: [{name:"release"}, { name: "main", channel: "alpha", prerelease: true}],
2+
branches: [{name:"release"}, { name: "main", channel: "alpha", prerelease: "alpha"}],
33
};

0 commit comments

Comments
 (0)