@vnejs/bundles.coralina 0.1.29 → 0.1.30
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 +6 -0
- package/dist/index.js +9 -0
- package/package.json +24 -6
- package/tsconfig.json +9 -0
- /package/{index.js → src/index.ts} +0 -0
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
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
|
+
// Шрифты
|
|
8
|
+
import "@vnejs/plugins.font.montserrat";
|
|
9
|
+
export { VneCore };
|
package/package.json
CHANGED
|
@@ -1,21 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vnejs/bundles.coralina",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.1.30",
|
|
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",
|
|
16
31
|
"@vnejs/plugins.settings.potato": "~0.1.0",
|
|
17
32
|
"@vnejs/plugins.views.fps": "~0.1.0",
|
|
18
33
|
"@vnejs/plugins.views.screens.mainmenu.socials": "~0.1.0",
|
|
19
34
|
"@vnejs/plugins.font.montserrat": "~0.1.0"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@vnejs/configs.ts-common": "~0.0.1"
|
|
20
38
|
}
|
|
21
39
|
}
|
package/tsconfig.json
ADDED
|
File without changes
|