nuxt-monaco-editor 1.1.1 → 1.1.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/CHANGELOG.md +2 -0
- package/LICENSE +2 -2
- package/dist/module.json +1 -1
- package/package.json +17 -16
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.1.2](https://github.com/e-chan1007/nuxt-monaco-editor/compare/v1.1.1...v1.1.2) (2023-01-16)
|
|
6
|
+
|
|
5
7
|
### [1.1.1](https://github.com/e-chan1007/nuxt-monaco-editor/compare/v1.1.0...v1.1.1) (2022-12-09)
|
|
6
8
|
|
|
7
9
|
|
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2022 e_chan1007
|
|
3
|
+
Copyright (c) 2022-2023 e_chan1007
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
package/dist/module.json
CHANGED
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "https://github.com/e-chan1007/nuxt-monaco-editor.git"
|
|
13
13
|
},
|
|
14
|
-
"version": "1.1.
|
|
14
|
+
"version": "1.1.2",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"exports": {
|
|
@@ -30,38 +30,39 @@
|
|
|
30
30
|
"_postinstall": "husky install",
|
|
31
31
|
"build": "nuxt-module-build",
|
|
32
32
|
"lint": "eslint --ext .js,.cjs,.mjs,.ts,.cts,.mts,.vue . && remark . -q",
|
|
33
|
-
"test": "
|
|
33
|
+
"test": "nuxt test",
|
|
34
34
|
"prepack": "pinst --disable && nuxt-module-build",
|
|
35
35
|
"release": "standard-version",
|
|
36
|
-
"dev": "
|
|
37
|
-
"dev:build": "
|
|
38
|
-
"dev:prepare": "nuxt-module-build --stub &&
|
|
39
|
-
"docs:dev": "
|
|
40
|
-
"docs:
|
|
41
|
-
"docs:
|
|
36
|
+
"dev": "nuxt dev playground",
|
|
37
|
+
"dev:build": "nuxt build playground",
|
|
38
|
+
"dev:prepare": "nuxt-module-build --stub && nuxt prepare playground",
|
|
39
|
+
"docs:dev": "nuxt dev docs",
|
|
40
|
+
"docs:generate": "nuxt generate docs",
|
|
41
|
+
"docs:prepare": "nuxt prepare docs",
|
|
42
|
+
"docs:preview": "nuxt preview docs"
|
|
42
43
|
},
|
|
43
44
|
"dependencies": {
|
|
44
45
|
"@nuxt/kit": "^3.0.0",
|
|
45
|
-
"vite-plugin-static-copy": "^0.
|
|
46
|
+
"vite-plugin-static-copy": "^0.13.0"
|
|
46
47
|
},
|
|
47
48
|
"devDependencies": {
|
|
48
|
-
"@commitlint/cli": "^17.
|
|
49
|
-
"@commitlint/config-conventional": "^17.
|
|
49
|
+
"@commitlint/cli": "^17.4.2",
|
|
50
|
+
"@commitlint/config-conventional": "^17.4.2",
|
|
51
|
+
"@nuxt-themes/docus": "^1.4.5",
|
|
50
52
|
"@nuxt/module-builder": "latest",
|
|
51
53
|
"@nuxt/test-utils-edge": "latest",
|
|
52
54
|
"@nuxtjs/eslint-config-typescript": "^12.0.0",
|
|
53
|
-
"eslint": "^8.
|
|
54
|
-
"husky": "^8.0.
|
|
55
|
+
"eslint": "^8.32.0",
|
|
56
|
+
"husky": "^8.0.3",
|
|
55
57
|
"monaco-editor": "^0.34.1",
|
|
56
58
|
"nuxt": "3.0.0",
|
|
57
59
|
"pinst": "^3.0.0",
|
|
58
|
-
"playwright": "^1.
|
|
60
|
+
"playwright": "^1.29.2",
|
|
59
61
|
"remark-cli": "^11.0.0",
|
|
60
62
|
"remark-lint": "^9.1.1",
|
|
61
63
|
"remark-preset-lint-recommended": "^6.1.2",
|
|
62
64
|
"standard-version": "^9.5.0",
|
|
63
|
-
"vitest": "^0.
|
|
64
|
-
"vuepress": "2.0.0-beta.50"
|
|
65
|
+
"vitest": "^0.27.1"
|
|
65
66
|
},
|
|
66
67
|
"peerDependencies": {
|
|
67
68
|
"monaco-editor": "*"
|