t2cd 0.1.1 → 0.1.3
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 +2 -0
- package/dist/{index.cjs.js → cjs/index.js} +2 -1
- package/dist/cjs/package.json +3 -0
- package/dist/mjs/index.js +4 -0
- package/dist/mjs/package.json +3 -0
- package/package.json +10 -11
- package/src/index.js +10 -0
- package/src/one/__docs__/one.md +19 -0
- package/src/one/index.js +5 -0
- package/src/sampleFunction.js +3 -0
- package/src/two/__docs__/two.md +19 -0
- package/src/two/index.js +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.2](https://github.com/cdcabrera/t1/compare/v0.0.5...v0.1.2) (2022-04-20)
|
|
6
|
+
|
|
5
7
|
### [0.1.1](https://github.com/cdcabrera/t1/compare/v0.0.5...v0.1.1) (2022-04-20)
|
|
6
8
|
|
|
7
9
|
### [0.1.0](https://github.com/cdcabrera/t1/compare/v0.0.5...v0.1.0) (2022-04-20)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
const { sampleFunction } = require('../../src/sampleFunction');
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
@@ -21,6 +21,7 @@ const components = {
|
|
|
21
21
|
Two
|
|
22
22
|
};
|
|
23
23
|
|
|
24
|
+
exports.sampleFunction = sampleFunction;
|
|
24
25
|
exports.One = One;
|
|
25
26
|
exports.Two = Two;
|
|
26
27
|
exports["default"] = components;
|
package/package.json
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "t2cd",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "testing",
|
|
5
|
-
"main": "dist/index.
|
|
6
|
-
"module": "dist/index.
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
],
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "testing alt dist output",
|
|
5
|
+
"main": "./dist/cjs/index.js",
|
|
6
|
+
"module": "./dist/mjs/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": "./dist/mjs/index.js",
|
|
10
|
+
"require": "./dist/cjs/index.js"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
14
13
|
"author": "CD Cabrera <cabrera.code@gmail.com>",
|
|
15
14
|
"homepage": "",
|
|
16
15
|
"license": "MIT",
|
package/src/index.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: One component
|
|
3
|
+
section: extensions
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
A **One** is used to lorem ipsum.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## Examples
|
|
10
|
+
### Basic component
|
|
11
|
+
```js
|
|
12
|
+
import React from 'react';
|
|
13
|
+
const Example = () => {
|
|
14
|
+
return <React.Fragment>hello world</React.Fragment>
|
|
15
|
+
}
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Documentation
|
|
19
|
+
Lorem ipsum
|
package/src/one/index.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: Two component
|
|
3
|
+
section: extensions
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
## Introduction
|
|
7
|
+
A **Two** is used to dolor sit.
|
|
8
|
+
|
|
9
|
+
## Examples
|
|
10
|
+
### Basic component
|
|
11
|
+
```js
|
|
12
|
+
import React from 'react';
|
|
13
|
+
const Example = () => {
|
|
14
|
+
return <React.Fragment>hello world</React.Fragment>
|
|
15
|
+
}
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Documentation
|
|
19
|
+
Lorem ipsum
|