@vnejs/bundles.coralina 0.1.28 → 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.
@@ -0,0 +1,6 @@
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.font.montserrat";
6
+ export { VneCore };
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.28",
4
- "main": "index.js",
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
- "publish:major": "npm version major && npm publish --access public",
8
- "publish:minor": "npm version minor && npm publish --access public",
9
- "publish:patch": "npm version patch && npm publish --access public"
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
- "@vnejs/plugins.views.mainmenu.socials": "~0.1.0",
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
  }
@@ -2,7 +2,7 @@ import { VneCore } from "@vnejs/bundles.vn.base";
2
2
 
3
3
  // Вьюхи
4
4
  import "@vnejs/plugins.views.fps";
5
- import "@vnejs/plugins.views.mainmenu.socials";
5
+ import "@vnejs/plugins.views.screens.mainmenu.socials";
6
6
 
7
7
  // Отдельные настройки
8
8
  import "@vnejs/plugins.settings.potato";
package/tsconfig.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "@vnejs/configs.ts-common/tsconfig.json",
3
+ "compilerOptions": {
4
+ "rootDir": "src",
5
+ "outDir": "dist"
6
+ },
7
+ "include": ["src/**/*.ts"],
8
+ "exclude": ["dist", "node_modules"]
9
+ }