vevet 4.0.0-beta.2 → 4.0.1

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Anton Bobrov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -94,6 +94,7 @@ const instance = new CustomCursor({
94
94
  });
95
95
  ```
96
96
 
97
- // todo: codesandbox demos
97
+ ## License
98
98
 
99
- // todo: task prepublishOnly: "run-s lint build deploy"
99
+ This project is licensed under the terms of the
100
+ [MIT license](https://github.com/antonbobrov/vevet/blob/master/LICENSE).
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- var version = '3.20.0';
3
+ var version = '4.0.1';
4
4
  exports.default = version;
5
5
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":";;AAAA,IAAM,OAAO,GAAG,QAAQ,CAAC;AACzB,kBAAe,OAAO,CAAC"}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":";;AAAA,IAAM,OAAO,GAAG,OAAO,CAAC;AACxB,kBAAe,OAAO,CAAC"}
@@ -1,3 +1,3 @@
1
- const version = '3.20.0';
1
+ const version = '4.0.1';
2
2
  export default version;
3
3
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,GAAG,QAAQ,CAAC;AACzB,eAAe,OAAO,CAAC"}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,GAAG,OAAO,CAAC;AACxB,eAAe,OAAO,CAAC"}
@@ -1,3 +1,3 @@
1
- declare const version = "3.20.0";
1
+ declare const version = "4.0.1";
2
2
  export default version;
3
3
  //# sourceMappingURL=version.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,OAAO,WAAW,CAAC;AACzB,eAAe,OAAO,CAAC"}
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,OAAO,UAAU,CAAC;AACxB,eAAe,OAAO,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vevet",
3
- "version": "4.0.0-beta.2",
4
- "description": "Vevet - A JavaScript Library for Creative Developers",
3
+ "version": "4.0.1",
4
+ "description": "Vevet is a flexible and powerful JavaScript library designed for creative web development",
5
5
  "scripts": {
6
6
  "storybook": "storybook dev -p 6006",
7
7
  "lint": "npm run lint:js && npm run lint:style",
@@ -16,7 +16,7 @@
16
16
  "build:docs": "typedoc --out docs ./src --theme default --hideGenerator --excludePrivate --excludeProtected --excludeInternal",
17
17
  "version": "node ./config/version.js && git add ./src/version.ts && git commit -m \"Update version\"",
18
18
  "deploy": "gh-pages -d docs",
19
- "prepublishOnly": "run-s lint build"
19
+ "prepublishOnly": "run-s lint build deploy"
20
20
  },
21
21
  "main": "./lib/cjs/index.js",
22
22
  "types": "./lib/types/index.d.ts",
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
- const version = '3.20.0';
1
+ const version = '4.0.1';
2
2
  export default version;