t2cd 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/dist/mjs/index.js +15 -1
  2. package/package.json +1 -1
package/dist/mjs/index.js CHANGED
@@ -1,4 +1,18 @@
1
1
  import React from 'react';
2
- import { components, One, Two, sampleFunction } from '../../src/';
2
+ import { sampleFunction } from '../../src/sampleFunction.js';
3
+
4
+ const One = () => {
5
+ return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("h1", null, "One lorem ipsum dolor sit"));
6
+ };
7
+
8
+ const Two = () => {
9
+ return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("h2", null, "Two lorem ipsum dolor sit"));
10
+ };
11
+
12
+ const components = {
13
+ One,
14
+ Two
15
+ };
16
+
3
17
 
4
18
  export { One, Two, sampleFunction, components as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "t2cd",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "testing alt dist output",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/mjs/index.js",