six-components 0.1.1 → 0.1.2
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/dist/index.cjs +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +9 -1
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var t=Object.defineProperty;var
|
|
1
|
+
"use strict";var t=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var l=Object.prototype.hasOwnProperty;var m=(e,o)=>{for(var s in o)t(e,s,{get:o[s],enumerable:!0})},p=(e,o,s,x)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of i(o))!l.call(e,n)&&n!==s&&t(e,n,{get:()=>o[n],enumerable:!(x=c(o,n))||x.enumerable});return e};var a=e=>p(t({},"__esModule",{value:!0}),e);var r={};m(r,{helloSix:()=>h});module.exports=a(r);var h="six names components";0&&(module.exports={helloSix});
|
package/dist/index.d.cts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const helloSix = "six names components";
|
|
2
2
|
|
|
3
|
-
export {
|
|
3
|
+
export { helloSix };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const helloSix = "six names components";
|
|
2
2
|
|
|
3
|
-
export {
|
|
3
|
+
export { helloSix };
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var o="
|
|
1
|
+
var o="six names components";export{o as helloSix};
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "six-components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"type": "module",
|
|
5
|
+
"description": "do not use this package, it is for testing purposes only",
|
|
5
6
|
"publishConfig": {
|
|
6
7
|
"access": "public"
|
|
7
8
|
},
|
|
@@ -11,6 +12,13 @@
|
|
|
11
12
|
"files": [
|
|
12
13
|
"dist"
|
|
13
14
|
],
|
|
15
|
+
"author": "6names",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"homepage": "https://google.com",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/sixnames/six-components"
|
|
21
|
+
},
|
|
14
22
|
"scripts": {
|
|
15
23
|
"build": "tsup src/index.ts --format cjs,esm --dts --minify --clean --external react",
|
|
16
24
|
"dev": "tsup src/index.ts --format cjs,esm --watch --dts --external react"
|