@newskit-render/checkout 0.4.0 → 0.5.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,50 @@
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
+ # [0.5.0](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/checkout@0.4.3...@newskit-render/checkout@0.5.0) (2021-11-22)
7
+
8
+
9
+ ### Features
10
+
11
+ * **PPDSR-0:** fix broken dependecy ([#521](https://github.com/newscorp-ghfb/ncu-newskit-render/issues/521)) ([2690dd3](https://github.com/newscorp-ghfb/ncu-newskit-render/commit/2690dd3bc6cf61a88740a0ff935adf461be02416))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.4.3](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/checkout@0.4.2...@newskit-render/checkout@0.4.3) (2021-11-18)
18
+
19
+
20
+ ### Reverts
21
+
22
+ * Revert "fix(PPDSR-541): switch packages to es modules (#512)" (#516) ([fd719ba](https://github.com/newscorp-ghfb/ncu-newskit-render/commit/fd719badac7578473e2bb991530277bb09ec2057)), closes [#512](https://github.com/newscorp-ghfb/ncu-newskit-render/issues/512) [#516](https://github.com/newscorp-ghfb/ncu-newskit-render/issues/516)
23
+
24
+
25
+
26
+
27
+
28
+ ## [0.4.2](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/checkout@0.4.1...@newskit-render/checkout@0.4.2) (2021-11-18)
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * **PPDSR-541:** switch packages to es modules ([#512](https://github.com/newscorp-ghfb/ncu-newskit-render/issues/512)) ([937e57c](https://github.com/newscorp-ghfb/ncu-newskit-render/commit/937e57cb891b366b8f3c2f73c6b88abffef0ea7a))
34
+
35
+
36
+
37
+
38
+
39
+ ## [0.4.1](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/checkout@0.4.0...@newskit-render/checkout@0.4.1) (2021-11-15)
40
+
41
+
42
+ ### Bug Fixes
43
+
44
+ * **PPDSR-541:** change packages to get published ([#506](https://github.com/newscorp-ghfb/ncu-newskit-render/issues/506)) ([4de773b](https://github.com/newscorp-ghfb/ncu-newskit-render/commit/4de773b8e22663a2822f64255f347c32384532c0))
45
+
46
+
47
+
48
+
49
+
6
50
  # [0.4.0](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/checkout@0.3.0...@newskit-render/checkout@0.4.0) (2021-11-10)
7
51
 
8
52
 
package/README.md CHANGED
@@ -7,3 +7,5 @@ Adding checkout to core.
7
7
  Describe usage
8
8
 
9
9
  ## Initializing Options
10
+
11
+ .
@@ -1,8 +1,13 @@
1
- import hello from '../index';
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ var index_1 = __importDefault(require("../index"));
2
7
  describe('Checkout', function () {
3
8
  it('Logs Welocome to Checkout to the console', function () {
4
9
  var spy = jest.spyOn(console, 'log');
5
- hello();
10
+ (0, index_1.default)();
6
11
  expect(spy).toHaveBeenCalledWith('Welcome to checkout!');
7
12
  });
8
13
  });
@@ -1 +1 @@
1
- {"version":3,"file":"index.tests.js","sourceRoot":"","sources":["../../src/__tests__/index.tests.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,UAAU,CAAA;AAE5B,QAAQ,CAAC,UAAU,EAAE;IACnB,EAAE,CAAC,0CAA0C,EAAE;QAC7C,IAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,KAAK,CAAC,CAAA;QACtC,KAAK,EAAE,CAAA;QACP,MAAM,CAAC,GAAG,CAAC,CAAC,oBAAoB,CAAC,sBAAsB,CAAC,CAAA;IAC1D,CAAC,CAAC,CAAA;AACJ,CAAC,CAAC,CAAA"}
1
+ {"version":3,"file":"index.tests.js","sourceRoot":"","sources":["../../src/__tests__/index.tests.ts"],"names":[],"mappings":";;;;;AAAA,mDAA4B;AAE5B,QAAQ,CAAC,UAAU,EAAE;IACnB,EAAE,CAAC,0CAA0C,EAAE;QAC7C,IAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,KAAK,CAAC,CAAA;QACtC,IAAA,eAAK,GAAE,CAAA;QACP,MAAM,CAAC,GAAG,CAAC,CAAC,oBAAoB,CAAC,sBAAsB,CAAC,CAAA;IAC1D,CAAC,CAAC,CAAA;AACJ,CAAC,CAAC,CAAA"}
package/dist/index.js CHANGED
@@ -1,5 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
1
3
  var hello = function () {
2
4
  return console.log('Welcome to checkout!');
3
5
  };
4
- export default hello;
6
+ exports.default = hello;
5
7
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,IAAM,KAAK,GAAG;IACZ,OAAO,OAAO,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAA;AAC5C,CAAC,CAAA;AAED,eAAe,KAAK,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAAA,IAAM,KAAK,GAAG;IACZ,OAAO,OAAO,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAA;AAC5C,CAAC,CAAA;AAED,kBAAe,KAAK,CAAA"}
package/dist/types.js CHANGED
@@ -1,2 +1,3 @@
1
- export {};
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
2
3
  //# sourceMappingURL=types.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newskit-render/checkout",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "Newskit Render - Checkout package",
5
5
  "author": "",
6
6
  "license": "UNLICENSED",