@waline/client 1.3.11 → 1.5.2
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/dist/Waline.min.d.ts +26 -8
- package/dist/Waline.min.js +1 -1
- package/dist/Waline.min.js.map +1 -1
- package/dist/Waline.noStyle.d.ts +26 -8
- package/dist/Waline.noStyle.js +1 -1
- package/dist/Waline.noStyle.js.map +1 -1
- package/dist/index.html +2 -1
- package/package.json +6 -6
- package/dist/Waline.commonjs.min.js +0 -13676
- package/dist/Waline.commonjs.min.js.LICENSE.txt +0 -5
- package/dist/Waline.commonjs.min.js.map +0 -1
- package/dist/Waline.min.js.LICENSE.txt +0 -5
- package/dist/Waline.noStyle.js.LICENSE.txt +0 -5
- package/dist/markdown.commonjs.min.js +0 -2870
- package/dist/markdown.commonjs.min.js.map +0 -1
- package/dist/markdown.min.js +0 -2870
- package/dist/markdown.min.js.map +0 -1
- package/dist/markdown.noStyle.js +0 -2870
- package/dist/markdown.noStyle.js.map +0 -1
- package/test/dist/main.js +0 -0
- package/test/dist/main.js.LICENSE.txt +0 -355
- package/test/node_modules/.package-lock.json +0 -36
- package/test/node_modules/comment-regex/index.js +0 -13
- package/test/node_modules/comment-regex/license +0 -21
- package/test/node_modules/comment-regex/package.json +0 -41
- package/test/node_modules/comment-regex/readme.md +0 -52
- package/test/node_modules/hanabi/LICENSE +0 -21
- package/test/node_modules/hanabi/README.md +0 -43
- package/test/node_modules/hanabi/dist/hanabi.js +0 -68
- package/test/node_modules/hanabi/dist/hanabi.min.js +0 -2
- package/test/node_modules/hanabi/dist/hanabi.min.js.map +0 -1
- package/test/node_modules/hanabi/package.json +0 -57
- package/test/node_modules/marked/LICENSE.md +0 -44
- package/test/node_modules/marked/README.md +0 -74
- package/test/node_modules/marked/bin/marked +0 -215
- package/test/node_modules/marked/lib/marked.esm.js +0 -2637
- package/test/node_modules/marked/lib/marked.js +0 -2787
- package/test/node_modules/marked/man/marked.1 +0 -111
- package/test/node_modules/marked/man/marked.1.txt +0 -96
- package/test/node_modules/marked/marked.min.js +0 -6
- package/test/node_modules/marked/package.json +0 -88
- package/test/node_modules/marked/src/Lexer.js +0 -491
- package/test/node_modules/marked/src/Parser.js +0 -263
- package/test/node_modules/marked/src/Renderer.js +0 -166
- package/test/node_modules/marked/src/Slugger.js +0 -49
- package/test/node_modules/marked/src/TextRenderer.js +0 -42
- package/test/node_modules/marked/src/Tokenizer.js +0 -730
- package/test/node_modules/marked/src/defaults.js +0 -32
- package/test/node_modules/marked/src/helpers.js +0 -260
- package/test/node_modules/marked/src/marked.js +0 -270
- package/test/node_modules/marked/src/rules.js +0 -310
package/dist/index.html
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
<!doctype html><html><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>Waline Test</title></head><body>阅读量: <span id="/" class="waline-visitor-count"></span> 评论数: <span id="/" class="waline-comment-count"></span><div id="waline" style="max-width: 800px;margin: 0 auto;"></div><script src="Waline.noStyle.js"></script><script>const waline = Waline({
|
|
2
2
|
el: '#waline',
|
|
3
|
+
lang: 'en-US',
|
|
3
4
|
path: '/',
|
|
4
5
|
visitor: true,
|
|
5
|
-
serverURL: '
|
|
6
|
+
serverURL: 'https://waline.vercel.app',
|
|
6
7
|
emoji: [
|
|
7
8
|
'https://cdn.jsdelivr.net/gh/walinejs/emojis@1.0.0/bilibili',
|
|
8
9
|
'https://cdn.jsdelivr.net/gh/walinejs/emojis@1.0.0/qq'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@waline/client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "client for waline comment system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"valine",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"browser": "dist/Waline.min.js",
|
|
17
17
|
"types": "dist/Waline.min.d.ts",
|
|
18
18
|
"scripts": {
|
|
19
|
-
"analyze": "cross-env ANALYZE=true webpack --mode=production",
|
|
19
|
+
"analyze": "cross-env ANALYZE=true webpack --mode=production --config ./build/webpack.config.js",
|
|
20
20
|
"build": "npm run build:normal && npm run build:no-style && npm run build:dts",
|
|
21
21
|
"build:dts": "rollup -c ./build/rollup.config.js",
|
|
22
22
|
"build:no-style": "webpack --mode=production --config ./build/webpack.noStyle.js",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/autosize": "4.0.0",
|
|
45
|
-
"@types/marked": "
|
|
46
|
-
"@vue/compiler-sfc": "3.2.
|
|
45
|
+
"@types/marked": "4.0.1",
|
|
46
|
+
"@vue/compiler-sfc": "3.2.22",
|
|
47
47
|
"autosize": "5.0.1",
|
|
48
48
|
"hanabi": "0.4.0",
|
|
49
|
-
"marked": "
|
|
49
|
+
"marked": "4.0.5",
|
|
50
50
|
"mitt": "3.0.0",
|
|
51
|
-
"vue": "3.2.
|
|
51
|
+
"vue": "3.2.22"
|
|
52
52
|
}
|
|
53
53
|
}
|