@finnair/v-validation-moment 1.1.0-alpha.0 → 1.1.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,39 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.1.0](https://github.com/finnair/v-validation/compare/v1.0.1...v1.1.0) (2022-08-29)
7
+
8
+
9
+ ### Features
10
+
11
+ * Support for Luxon ([94b3806](https://github.com/finnair/v-validation/commit/94b38060e07feeb0abb8c81659d8bda537a4d9aa))
12
+
13
+
14
+
15
+
16
+
17
+ # [1.1.0-alpha.6](https://github.com/finnair/v-validation/compare/v1.0.1...v1.1.0-alpha.6) (2022-08-17)
18
+
19
+
20
+ ### Features
21
+
22
+ * Support for Luxon ([00d0a8e](https://github.com/finnair/v-validation/commit/00d0a8e8c8de46bfeb3502f51bb8cd5a3627070e))
23
+
24
+
25
+
26
+
27
+
28
+ # [1.1.0-alpha.5](https://github.com/finnair/v-validation/compare/v1.0.1...v1.1.0-alpha.5) (2022-08-16)
29
+
30
+
31
+ ### Features
32
+
33
+ * Support for Luxon ([6a243f0](https://github.com/finnair/v-validation/commit/6a243f043db2ca6700180eb758a08d8edfe1e538))
34
+
35
+
36
+
37
+
38
+
6
39
  # [1.1.0-alpha.0](https://github.com/finnair/v-validation/compare/v1.0.1...v1.1.0-alpha.0) (2022-08-12)
7
40
 
8
41
 
@@ -1,4 +1,8 @@
1
1
  "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
2
5
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const Vmoment_1 = require("./Vmoment");
4
- console.log((0, Vmoment_1.timeMoment)('24:00:01').toDate().toISOString());
6
+ const moment_1 = __importDefault(require("moment"));
7
+ const m = moment_1.default.utc('2022-08-24T14:05:00Z').utcOffset('2022-08-24T17:35:00+03:00');
8
+ console.log(m.format());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finnair/v-validation-moment",
3
- "version": "1.1.0-alpha.0",
3
+ "version": "1.1.0",
4
4
  "private": false,
5
5
  "description": "Moment validators",
6
6
  "main": "dist/index.js",
@@ -25,9 +25,9 @@
25
25
  "build": "tsc -b ."
26
26
  },
27
27
  "dependencies": {
28
- "@finnair/path": "^1.1.0-alpha.0",
29
- "@finnair/v-validation": "^1.1.0-alpha.0",
28
+ "@finnair/path": "^1.1.0",
29
+ "@finnair/v-validation": "^1.1.0",
30
30
  "moment": "2.29.4"
31
31
  },
32
- "gitHead": "980da25d0eb031a0ed89691c97459b23efcdc8a5"
32
+ "gitHead": "860263e814c178790766b48e22d8a8995e33ae40"
33
33
  }