joplin-plugin-copy-as-html 1.1.5 → 1.1.7
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-copy-as-html",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
|
|
6
6
|
"prepare": "npm run dist",
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force",
|
|
9
9
|
"lint": "eslint --ext .ts src/",
|
|
10
10
|
"lint:fix": "eslint --ext .ts src/ --fix",
|
|
11
|
-
"format": "prettier --write \"src/**/*.ts\""
|
|
11
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
12
|
+
"test": "jest"
|
|
12
13
|
},
|
|
13
14
|
"license": "MIT",
|
|
14
15
|
"keywords": [
|
|
@@ -18,6 +19,9 @@
|
|
|
18
19
|
"publish"
|
|
19
20
|
],
|
|
20
21
|
"devDependencies": {
|
|
22
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
23
|
+
"@eslint/js": "^9.34.0",
|
|
24
|
+
"@types/jest": "^30.0.0",
|
|
21
25
|
"@types/jsdom": "^21.1.7",
|
|
22
26
|
"@types/markdown-it": "^14.1.2",
|
|
23
27
|
"@types/node": "^18.7.13",
|
|
@@ -25,20 +29,21 @@
|
|
|
25
29
|
"@typescript-eslint/parser": "^8.40.0",
|
|
26
30
|
"chalk": "^4.1.0",
|
|
27
31
|
"copy-webpack-plugin": "^11.0.0",
|
|
28
|
-
"eslint": "^9.
|
|
32
|
+
"eslint": "^9.34.0",
|
|
29
33
|
"eslint-config-prettier": "^10.1.8",
|
|
30
34
|
"eslint-plugin-prettier": "^5.5.4",
|
|
31
35
|
"fs-extra": "^10.1.0",
|
|
32
36
|
"glob": "^8.0.3",
|
|
37
|
+
"jest": "^30.0.5",
|
|
33
38
|
"prettier": "^3.6.2",
|
|
34
39
|
"tar": "^6.1.11",
|
|
40
|
+
"ts-jest": "^29.4.1",
|
|
35
41
|
"ts-loader": "^9.3.1",
|
|
36
42
|
"typescript": "^4.8.2",
|
|
37
43
|
"webpack": "^5.74.0",
|
|
38
44
|
"webpack-cli": "^4.10.0"
|
|
39
45
|
},
|
|
40
46
|
"dependencies": {
|
|
41
|
-
"@joplin/renderer": "^3.3.1",
|
|
42
47
|
"jsdom": "^26.1.0",
|
|
43
48
|
"markdown-it": "^14.1.0",
|
|
44
49
|
"markdown-it-abbr": "^2.0.0",
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "com.bwat47.copyashtml",
|
|
4
4
|
"app_min_version": "3.3",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.7",
|
|
6
6
|
"name": "Copy as HTML",
|
|
7
7
|
"description": "Allows you to copy text with HTML (rich text) formatting from the markdown editor (including images). Also allows you to copy as plain text (without markdown formatting)",
|
|
8
8
|
"author": "bwat47",
|
|
@@ -142,6 +142,6 @@
|
|
|
142
142
|
"value": "spaces"
|
|
143
143
|
}
|
|
144
144
|
},
|
|
145
|
-
"_publish_hash": "sha256:
|
|
146
|
-
"_publish_commit": "main:
|
|
145
|
+
"_publish_hash": "sha256:8a2190701b2ff20dfbbe5f5b36c0e899a0923d64c923215d1941e0a0741e62c2",
|
|
146
|
+
"_publish_commit": "main:21c624cdbd8da5213777f8b3ec908744a7ccfbb9"
|
|
147
147
|
}
|