@standardnotes/classic-code-editor 1.5.7 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +14 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.6.0](https://github.com/standardnotes/plugins/compare/@standardnotes/classic-code-editor@1.5.7...@standardnotes/classic-code-editor@1.6.0) (2023-11-18)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add classic editors ([96a412a](https://github.com/standardnotes/plugins/commit/96a412a9725f689cbd5ca95f7feb5ba19938dd9a))
|
|
11
|
+
|
|
6
12
|
## [1.5.7](https://github.com/standardnotes/plugins/compare/@standardnotes/classic-code-editor@1.5.5...@standardnotes/classic-code-editor@1.5.7) (2022-11-04)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @standardnotes/classic-code-editor
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@standardnotes/classic-code-editor",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"description": "
|
|
7
|
+
"description": "Syntax highlighting and convenient keyboard shortcuts for over 120 programming languages. Ideal for code snippets and procedures.",
|
|
8
8
|
"main": "dist/main.js",
|
|
9
|
-
"author": "Standard Notes",
|
|
9
|
+
"author": "Standard Notes Classic",
|
|
10
10
|
"license": "AGPL-3.0",
|
|
11
11
|
"scripts": {
|
|
12
12
|
"start": "http-server . --cors -p8001 & webpack --progress --config webpack.dev.js",
|
|
@@ -16,6 +16,16 @@
|
|
|
16
16
|
"clean": "rm -rf ./vendor",
|
|
17
17
|
"test": "echo \"Error: no test specified\" && exit 0"
|
|
18
18
|
},
|
|
19
|
+
"sn": {
|
|
20
|
+
"name": "Code",
|
|
21
|
+
"content_type": "SN|Component",
|
|
22
|
+
"main": "index.html",
|
|
23
|
+
"area": "editor-editor",
|
|
24
|
+
"spellcheckControl": true,
|
|
25
|
+
"note_type": "code",
|
|
26
|
+
"file_type": "txt",
|
|
27
|
+
"showInGallery": true
|
|
28
|
+
},
|
|
19
29
|
"dependencies": {
|
|
20
30
|
"@standardnotes/component-relay": "standardnotes/component-relay#839ff5db9bc92db9d42cad8d202ddc4df729597d"
|
|
21
31
|
},
|
|
@@ -36,5 +46,5 @@
|
|
|
36
46
|
"webpack-cli": "*",
|
|
37
47
|
"webpack-merge": "^5.8.0"
|
|
38
48
|
},
|
|
39
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "acc3dcf053c4bb32d11f63f4596315988661e7a5"
|
|
40
50
|
}
|