@vnejs/shared 0.0.8 → 0.0.9
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/index.d.ts +6 -8
- package/package.json +4 -4
- package/README.md +0 -0
package/index.d.ts
CHANGED
|
@@ -4,11 +4,9 @@ declare interface PARAMS {}
|
|
|
4
4
|
declare interface SETTINGS {}
|
|
5
5
|
declare interface MODULE_EXTENSIONS {}
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
};
|
|
14
|
-
}
|
|
7
|
+
export const VNE: {
|
|
8
|
+
CONST: CONST;
|
|
9
|
+
EVENTS: EVENTS;
|
|
10
|
+
PARAMS: PARAMS;
|
|
11
|
+
SETTINGS: SETTINGS;
|
|
12
|
+
};
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vnejs/shared",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
7
7
|
"build": "tsc ./index.ts",
|
|
8
|
-
"publish:major": "npm version major && npm publish --
|
|
9
|
-
"publish:minor": "npm version minor && npm publish --
|
|
10
|
-
"publish:patch": "npm version patch && npm publish --
|
|
8
|
+
"publish:major": "npm version major && npm publish --access public --legacy-peer-deps",
|
|
9
|
+
"publish:minor": "npm version minor && npm publish --access public --legacy-peer-deps",
|
|
10
|
+
"publish:patch": "npm version patch && npm publish --access public --legacy-peer-deps"
|
|
11
11
|
},
|
|
12
12
|
"author": "",
|
|
13
13
|
"license": "ISC",
|
package/README.md
DELETED
|
File without changes
|