@standardnotes/community-cdn 0.4.0 → 0.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 +12 -0
- package/dist/packages.json +21 -3
- package/package.json +2 -4
- package/plugins.json +92 -0
- package/tsconfig.json +0 -14
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
# [0.6.0](https://github.com/standardnotes/plugins/compare/@standardnotes/community-cdn@0.5.0...@standardnotes/community-cdn@0.6.0) (2022-11-04)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add core plugins ([b607787](https://github.com/standardnotes/plugins/commit/b60778762306f5647cb715102eab23083b266718))
|
|
11
|
+
|
|
12
|
+
# [0.5.0](https://github.com/standardnotes/plugins/compare/@standardnotes/community-cdn@0.4.0...@standardnotes/community-cdn@0.5.0) (2022-10-17)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* add markdown math ([950eead](https://github.com/standardnotes/plugins/commit/950eeadb32bf39190762477867cb0798bb4f1d55))
|
|
17
|
+
|
|
6
18
|
# [0.4.0](https://github.com/standardnotes/plugins/compare/@standardnotes/community-cdn@0.3.3...@standardnotes/community-cdn@0.4.0) (2022-10-17)
|
|
7
19
|
|
|
8
20
|
### Features
|
package/dist/packages.json
CHANGED
|
@@ -59,11 +59,29 @@
|
|
|
59
59
|
"main": "dist/index.html",
|
|
60
60
|
"file_type": "txt",
|
|
61
61
|
"identifier": "com.sncommunity.markdown-basic",
|
|
62
|
-
"version": "1.
|
|
62
|
+
"version": "1.5.0",
|
|
63
63
|
"url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.markdown-basic/dist/index.html",
|
|
64
64
|
"download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.markdown-basic.zip",
|
|
65
65
|
"latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.markdown-basic.json",
|
|
66
|
-
"
|
|
67
|
-
"
|
|
66
|
+
"publisher": "Standard Notes Retired",
|
|
67
|
+
"base64Hash": "c1447677dddf7473dc9f84242280b1c4df41f2610eaae3fa1a826b71f433c9c9",
|
|
68
|
+
"binaryHash": "5b3de1ca9d444a792740db5d3255da7f838698f5267ac0bdf0b204dc69b80043"
|
|
69
|
+
},
|
|
70
|
+
"com.sncommunity.markdown-math": {
|
|
71
|
+
"name": "Markdown Math",
|
|
72
|
+
"content_type": "SN|Component",
|
|
73
|
+
"area": "editor-editor",
|
|
74
|
+
"spellcheckControl": true,
|
|
75
|
+
"note_type": "markdown",
|
|
76
|
+
"main": "index.html",
|
|
77
|
+
"file_type": "txt",
|
|
78
|
+
"identifier": "com.sncommunity.markdown-math",
|
|
79
|
+
"version": "1.3.10",
|
|
80
|
+
"url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.markdown-math/index.html",
|
|
81
|
+
"download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.markdown-math.zip",
|
|
82
|
+
"latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.markdown-math.json",
|
|
83
|
+
"publisher": "Standard Notes Retired",
|
|
84
|
+
"base64Hash": "eba90210b0dd862efd22b56a2c7578e272e75749e495eceddf96bb4e5864a737",
|
|
85
|
+
"binaryHash": "5d30a5150289a46fbb27e510ac1ce5e6ec7d2691c30e988767283d1f672aaa62"
|
|
68
86
|
}
|
|
69
87
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@standardnotes/community-cdn",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"license": "AGPL-3.0-or-later",
|
|
5
5
|
"author": "Standard Notes Community",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
-
"lint": "eslint src/ --ext .ts,.tsx",
|
|
11
|
-
"build": "yarn tsc --project tsconfig.json",
|
|
12
10
|
"package": "yarn build && node scripts/Package.mjs",
|
|
13
11
|
"compile": "./scripts/Compile.sh"
|
|
14
12
|
},
|
|
@@ -19,5 +17,5 @@
|
|
|
19
17
|
"minimatch": "^5.1.0",
|
|
20
18
|
"typescript": "*"
|
|
21
19
|
},
|
|
22
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "835f27e8a1dedadae87122d29cbe0256d5b312e0"
|
|
23
21
|
}
|
package/plugins.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"identifier": "com.sncommunity.minimal-markdown",
|
|
4
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"]
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
"identifier": "com.sncommunity.bold-editor",
|
|
8
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"]
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"identifier": "com.sncommunity.advanced-checklist",
|
|
12
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"]
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"identifier": "com.sncommunity.markdown-basic",
|
|
16
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"]
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"identifier": "com.sncommunity.markdown-math",
|
|
20
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"]
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"identifier": "org.standardnotes.advanced-markdown-editor",
|
|
24
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"],
|
|
25
|
+
"cdn": false
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"identifier": "org.standardnotes.code-editor",
|
|
29
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"],
|
|
30
|
+
"cdn": false
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"identifier": "org.standardnotes.markdown-visual-editor",
|
|
34
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"],
|
|
35
|
+
"cdn": false
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"identifier": "org.standardnotes.plus-editor",
|
|
39
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"],
|
|
40
|
+
"cdn": false
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"identifier": "org.standardnotes.simple-task-editor",
|
|
44
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"],
|
|
45
|
+
"cdn": false
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"identifier": "org.standardnotes.standard-sheets",
|
|
49
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"],
|
|
50
|
+
"cdn": false
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"identifier": "org.standardnotes.theme-autobiography",
|
|
54
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"],
|
|
55
|
+
"cdn": false
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"identifier": "org.standardnotes.theme-dynamic",
|
|
59
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"],
|
|
60
|
+
"cdn": false
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"identifier": "org.standardnotes.theme-focus",
|
|
64
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"],
|
|
65
|
+
"cdn": false
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"identifier": "org.standardnotes.theme-futura",
|
|
69
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"],
|
|
70
|
+
"cdn": false
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"identifier": "org.standardnotes.theme-midnight",
|
|
74
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"],
|
|
75
|
+
"cdn": false
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"identifier": "org.standardnotes.theme-solarized-dark",
|
|
79
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"],
|
|
80
|
+
"cdn": false
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"identifier": "org.standardnotes.theme-titanium",
|
|
84
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"],
|
|
85
|
+
"cdn": false
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"identifier": "org.standardnotes.token-vault",
|
|
89
|
+
"staticFiles": ["index.html", "dist", "build", "package.json"],
|
|
90
|
+
"cdn": false
|
|
91
|
+
}
|
|
92
|
+
]
|
package/tsconfig.json
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"baseUrl": ".",
|
|
4
|
-
"rootDir": "src",
|
|
5
|
-
"outDir": "dist/src",
|
|
6
|
-
"module": "node16",
|
|
7
|
-
"target": "es5",
|
|
8
|
-
"lib": ["es6", "dom", "es2016", "es2017"],
|
|
9
|
-
"declaration": true,
|
|
10
|
-
"moduleResolution": "node",
|
|
11
|
-
"skipLibCheck": true
|
|
12
|
-
},
|
|
13
|
-
"exclude": ["dist", "node_modules", "scripts"]
|
|
14
|
-
}
|