@vleap/warps-react 0.0.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.
- package/.turbo/turbo-build.log +20 -0
- package/.turbo/turbo-test.log +10 -0
- package/CHANGELOG.md +9 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +0 -0
- package/package.json +31 -0
- package/src/index.ts +0 -0
- package/tsconfig.json +5 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
> @vleap/warps-react@0.0.4 build
|
|
4
|
+
> tsup src/index.ts --format cjs,esm --dts --minify
|
|
5
|
+
|
|
6
|
+
[1G[0K[34mCLI[39m Building entry: src/index.ts
|
|
7
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
8
|
+
[34mCLI[39m tsup v8.3.5
|
|
9
|
+
[34mCLI[39m Target: es6
|
|
10
|
+
[34mCJS[39m Build start
|
|
11
|
+
[34mESM[39m Build start
|
|
12
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m0 B[39m
|
|
13
|
+
[32mESM[39m ⚡️ Build success in 10ms
|
|
14
|
+
[32mCJS[39m [1mdist/index.js [22m[32m14.00 B[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 10ms
|
|
16
|
+
DTS Build start
|
|
17
|
+
DTS ⚡️ Build success in 380ms
|
|
18
|
+
DTS dist/index.d.ts 13.00 B
|
|
19
|
+
DTS dist/index.d.mts 13.00 B
|
|
20
|
+
[1G[0K⠙[1G[0K
|
package/CHANGELOG.md
ADDED
package/dist/index.d.mts
ADDED
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
package/dist/index.mjs
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vleap/warps-react",
|
|
3
|
+
"version": "0.0.4",
|
|
4
|
+
"main": "./src/index.tsx",
|
|
5
|
+
"types": "./src/index.tsx",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --minify",
|
|
9
|
+
"lint": "eslint \"./src/**/*.ts*\"",
|
|
10
|
+
"test": "npm run lint"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@vleap/warps": "*"
|
|
14
|
+
},
|
|
15
|
+
"peerDependencies": {
|
|
16
|
+
"react": ">=18.0.0",
|
|
17
|
+
"react-dom": ">=18.0.0"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@types/react": "^18.3.12",
|
|
21
|
+
"@types/react-dom": "^18.3.1",
|
|
22
|
+
"eslint": "^9.14.0",
|
|
23
|
+
"eslint-config-custom": "*",
|
|
24
|
+
"react": "^18.3.1",
|
|
25
|
+
"tsconfig": "*",
|
|
26
|
+
"typescript": "^5.6.3"
|
|
27
|
+
},
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
}
|
|
31
|
+
}
|
package/src/index.ts
ADDED
|
File without changes
|