@vnejs/bundles.coralina 0.1.29 → 0.1.31
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/index.d.ts +8 -0
- package/dist/index.js +11 -0
- package/package.json +26 -6
- package/{index.js → src/index.ts} +2 -0
- package/tsconfig.json +9 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { VneCore } from "@vnejs/bundles.vn.base";
|
|
2
|
+
import "@vnejs/plugins.views.fps";
|
|
3
|
+
import "@vnejs/plugins.views.screens.mainmenu.socials";
|
|
4
|
+
import "@vnejs/plugins.settings.potato";
|
|
5
|
+
import "@vnejs/plugins.compatibility.potato-audio";
|
|
6
|
+
import "@vnejs/plugins.compatibility.potato-text";
|
|
7
|
+
import "@vnejs/plugins.font.montserrat";
|
|
8
|
+
export { VneCore };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { VneCore } from "@vnejs/bundles.vn.base";
|
|
2
|
+
// Вьюхи
|
|
3
|
+
import "@vnejs/plugins.views.fps";
|
|
4
|
+
import "@vnejs/plugins.views.screens.mainmenu.socials";
|
|
5
|
+
// Отдельные настройки
|
|
6
|
+
import "@vnejs/plugins.settings.potato";
|
|
7
|
+
import "@vnejs/plugins.compatibility.potato-audio";
|
|
8
|
+
import "@vnejs/plugins.compatibility.potato-text";
|
|
9
|
+
// Шрифты
|
|
10
|
+
import "@vnejs/plugins.font.montserrat";
|
|
11
|
+
export { VneCore };
|
package/package.json
CHANGED
|
@@ -1,21 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vnejs/bundles.coralina",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.1.31",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"require": "./dist/index.js",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"src",
|
|
18
|
+
"tsconfig.json"
|
|
19
|
+
],
|
|
5
20
|
"scripts": {
|
|
6
21
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
7
|
-
"
|
|
8
|
-
"publish:
|
|
9
|
-
"publish:
|
|
22
|
+
"build": "npx @vnejs/monorepo package",
|
|
23
|
+
"publish:major": "npx @vnejs/monorepo publish major --access public",
|
|
24
|
+
"publish:minor": "npx @vnejs/monorepo publish minor --access public",
|
|
25
|
+
"publish:patch": "npx @vnejs/monorepo publish patch --access public"
|
|
10
26
|
},
|
|
11
27
|
"author": "",
|
|
12
28
|
"license": "ISC",
|
|
13
|
-
"description": "",
|
|
14
29
|
"dependencies": {
|
|
15
30
|
"@vnejs/bundles.vn.base": "~0.1.0",
|
|
31
|
+
"@vnejs/plugins.compatibility.potato-audio": "~0.1.0",
|
|
32
|
+
"@vnejs/plugins.compatibility.potato-text": "~0.1.0",
|
|
16
33
|
"@vnejs/plugins.settings.potato": "~0.1.0",
|
|
17
34
|
"@vnejs/plugins.views.fps": "~0.1.0",
|
|
18
35
|
"@vnejs/plugins.views.screens.mainmenu.socials": "~0.1.0",
|
|
19
36
|
"@vnejs/plugins.font.montserrat": "~0.1.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@vnejs/configs.ts-common": "~0.0.1"
|
|
20
40
|
}
|
|
21
41
|
}
|
|
@@ -6,6 +6,8 @@ import "@vnejs/plugins.views.screens.mainmenu.socials";
|
|
|
6
6
|
|
|
7
7
|
// Отдельные настройки
|
|
8
8
|
import "@vnejs/plugins.settings.potato";
|
|
9
|
+
import "@vnejs/plugins.compatibility.potato-audio";
|
|
10
|
+
import "@vnejs/plugins.compatibility.potato-text";
|
|
9
11
|
|
|
10
12
|
// Шрифты
|
|
11
13
|
import "@vnejs/plugins.font.montserrat";
|