Skip to content

Commit 449d9a7

Browse files
committed
Fix: correct link to on-line docs.
alphabetize package.json.
1 parent ad9b7a6 commit 449d9a7

File tree

6 files changed

+77
-66
lines changed

6 files changed

+77
-66
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ jobs:
182182
BUILD_MANIFEST_NAME: target/distrib/global-dist-manifest.json
183183
VSCE_PAT: ${{ secrets.VSCE_PAT }}
184184
APP_VERSION: ${{ fromJson(needs.plan.outputs.val).releases[0].app_version }}
185+
VSCE_ARGS: --changelog-path docs/changelog.md
185186
steps:
186187
- uses: actions/checkout@v4
187188
with:
@@ -203,10 +204,10 @@ jobs:
203204
- id: cargo-dist
204205
shell: bash
205206
run: |
206-
npx vsce publish --packagePath target/distrib/extensions/VSCode/codechat-editor-client-win32-x64-${APP_VERSION}.vsix
207-
npx vsce publish --packagePath target/distrib/extensions/VSCode/codechat-editor-client-linux-x64-${APP_VERSION}.vsix
208-
npx vsce publish --packagePath target/distrib/extensions/VSCode/codechat-editor-client-darwin-x64-${APP_VERSION}.vsix
209-
npx vsce publish --packagePath target/distrib/extensions/VSCode/codechat-editor-client-darwin-arm64-${APP_VERSION}.vsix
207+
npx vsce publish --packagePath target/distrib/extensions/VSCode/codechat-editor-client-win32-x64-${APP_VERSION}.vsix $VSCE_ARGS
208+
npx vsce publish --packagePath target/distrib/extensions/VSCode/codechat-editor-client-linux-x64-${APP_VERSION}.vsix $VSCE_ARGS
209+
npx vsce publish --packagePath target/distrib/extensions/VSCode/codechat-editor-client-darwin-x64-${APP_VERSION}.vsix $VSCE_ARGS
210+
npx vsce publish --packagePath target/distrib/extensions/VSCode/codechat-editor-client-darwin-arm64-${APP_VERSION}.vsix $VSCE_ARGS
210211
dist build ${{ needs.plan.outputs.tag-flag }} --output-format=json "--artifacts=global" > dist-manifest.json
211212
echo "dist ran successfully"
212213

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ its basic features and use. In contrast, the [style guide](docs/style_guide.cpp)
77
provides strategies for effectively employing the CodeChat Editor to improve the
88
software development process.
99

10+
Full manual
11+
-----------
12+
13+
The [full
14+
manual](https://codechat-editor.onrender.com/fw/fsb/opt/render/project/src/README.md),
15+
in 
16+
1017
Installation
1118
------------
1219

client/package.json

Lines changed: 38 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,26 @@
11
{
2-
"name": "codechat-editor-client",
3-
"version": "0.1.27",
2+
"author": "Bryan A. Jones",
3+
"categories": [
4+
"Other"
5+
],
46
"description": "The CodeChat Editor Client, part of a web-based literate programming editor (the CodeChat Editor).",
5-
"homepage": "https://github.com/bjones1/CodeChat_Editor",
6-
"type": "module",
7-
"scripts": {
8-
"test": "echo \"Error: no test specified\" && exit 1",
9-
"build": "cargo run --manifest-path=../builder/Cargo.toml client-build",
10-
"dist": "cargo run --manifest-path=../builder/Cargo.toml client-build --dist"
7+
"homepage": "https://codechat-editor.onrender.com/fw/fsb/opt/render/project/src/README.md",
8+
"keywords": [
9+
"literate programming",
10+
"CodeChat Editor",
11+
"Visual Studio Code extension"
12+
],
13+
"license": "GPL-3.0-only",
14+
"name": "codechat-editor-client",
15+
"prettier": {
16+
"tabWidth": 4
1117
},
12-
"keywords": [],
13-
"author": "Bryan A. Jones",
14-
"license": "GPL-3.0-or-later",
15-
"devDependencies": {
16-
"@types/chai": "^5",
17-
"@types/js-beautify": "^1",
18-
"@types/mocha": "^10",
19-
"@types/node": "^24",
20-
"@types/toastify-js": "^1.12.4",
21-
"@typescript-eslint/eslint-plugin": "^8",
22-
"@typescript-eslint/parser": "^8",
23-
"chai": "^5",
24-
"esbuild": "^0.25",
25-
"eslint": "^9",
26-
"eslint-config-prettier": "^10",
27-
"eslint-plugin-import": "^2",
28-
"eslint-plugin-prettier": "^5",
29-
"typescript": "^5"
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/bjones1/CodeChat_editor"
3021
},
22+
"type": "module",
23+
"version": "0.1.27",
3124
"dependencies": {
3225
"@codemirror/lang-cpp": "^6",
3326
"@codemirror/lang-css": "^6",
@@ -52,11 +45,25 @@
5245
"tinymce": "^8",
5346
"toastify-js": "^1"
5447
},
55-
"repository": {
56-
"type": "git",
57-
"url": "https://github.com/bjones1/CodeChat_editor"
48+
"devDependencies": {
49+
"@types/chai": "^5",
50+
"@types/js-beautify": "^1",
51+
"@types/mocha": "^10",
52+
"@types/node": "^24",
53+
"@types/toastify-js": "^1.12.4",
54+
"@typescript-eslint/eslint-plugin": "^8",
55+
"@typescript-eslint/parser": "^8",
56+
"chai": "^5",
57+
"esbuild": "^0.25",
58+
"eslint": "^9",
59+
"eslint-config-prettier": "^10",
60+
"eslint-plugin-import": "^2",
61+
"eslint-plugin-prettier": "^5",
62+
"typescript": "^5"
5863
},
59-
"prettier": {
60-
"tabWidth": 4
64+
"scripts": {
65+
"test": "echo \"Error: no test specified\" && exit 1",
66+
"build": "cargo run --manifest-path=../builder/Cargo.toml client-build",
67+
"dist": "cargo run --manifest-path=../builder/Cargo.toml client-build --dist"
6168
}
6269
}

extensions/VSCode/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ Additional documentation
4242
------------------------
4343

4444
See the [user
45-
manual](https://github.com/bjones1/CodeChat_Editor/blob/main/README.md).
45+
manual](https://codechat-editor.onrender.com/fw/fsb/opt/render/project/src/README.md).

extensions/VSCode/package.json

Lines changed: 25 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,36 @@
11
{
2-
"name": "codechat-editor-client",
3-
"version": "0.1.27",
4-
"publisher": "CodeChat",
5-
"engines": {
6-
"vscode": "^1.61.0"
2+
"author": {
3+
"name": "Bryan A. Jones"
74
},
8-
"license": "GPL-3.0-only",
9-
"displayName": "CodeChat Editor",
10-
"description": "This embeds the CodeChat Editor in the Visual Studio Code Editor.",
115
"categories": [
126
"Other"
137
],
8+
"description": "This embeds the CodeChat Editor in the Visual Studio Code Editor.",
9+
"displayName": "CodeChat Editor",
10+
"engines": {
11+
"vscode": "^1.61.0"
12+
},
13+
"extensionKind": [
14+
"workspace"
15+
],
16+
"homepage": "https://codechat-editor.onrender.com/fw/fsb/opt/render/project/src/README.md",
1417
"keywords": [
1518
"literate programming",
1619
"CodeChat Editor",
1720
"Visual Studio Code extension"
1821
],
22+
"license": "GPL-3.0-only",
1923
"main": "out/extensions/VSCode/src/extension.js",
24+
"name": "codechat-editor-client",
25+
"prettier": {
26+
"tabWidth": 4
27+
},
28+
"publisher": "CodeChat",
29+
"repository": {
30+
"type": "git",
31+
"url": "https://github.com/bjones1/CodeChat_Editor"
32+
},
33+
"version": "0.1.27",
2034
"contributes": {
2135
"configuration": {
2236
"title": "CodeChat Editor",
@@ -59,20 +73,10 @@
5973
}
6074
]
6175
},
62-
"activationEvents": [
63-
"onCommand:extension.codeChatEditorActivate",
64-
"onCommand:extension.codeChatEditorDeactivate"
65-
],
66-
"extensionKind": [
67-
"workspace"
68-
],
6976
"dependencies": {
7077
"escape-html": "^1",
7178
"ws": "^8"
7279
},
73-
"optionalDependencies": {
74-
"bufferutil": "^4"
75-
},
7680
"devDependencies": {
7781
"@types/escape-html": "^1",
7882
"@types/ws": "^8",
@@ -87,22 +91,14 @@
8791
"ovsx": "^0.10",
8892
"typescript": "^5"
8993
},
94+
"optionalDependencies": {
95+
"bufferutil": "^4"
96+
},
9097
"scripts": {
9198
"vscode:prepublish": "npm run compile",
9299
"compile": "tsc -p ./",
93100
"watch": "tsc -watch -p ./",
94101
"pretest": "npm run compile",
95102
"test": "node ./out/test/runTest.js"
96-
},
97-
"homepage": "https://github.com/bjones1/CodeChat_Editor",
98-
"author": {
99-
"name": "Bryan A. Jones"
100-
},
101-
"repository": {
102-
"type": "git",
103-
"url": "https://github.com/bjones1/CodeChat_Editor"
104-
},
105-
"prettier": {
106-
"tabWidth": 4
107103
}
108104
}

server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ authors = ["Bryan A. Jones", "Peter Loux"]
2626
categories = ["development-tools", "text-editors"]
2727
description = "A programmer's word processor."
2828
edition = "2024"
29-
homepage = "https://codechat-editor.onrender.com"
29+
homepage = "https://codechat-editor.onrender.com/fw/fsb/opt/render/project/src/README.md"
3030
keywords = ["literate programming"]
3131
license = "GPL-3.0-only"
3232
name = "codechat-editor-server"

0 commit comments

Comments
 (0)