@vleap/warps-react 0.1.0-alpha.69 → 0.1.0-alpha.70
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 +6 -10
- package/.turbo/turbo-lint.log +3 -2
- package/.turbo/turbo-test.log +2 -2
- package/CHANGELOG.md +11 -0
- package/dist/index.js +0 -1
- package/package.json +11 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,20 +1,16 @@
|
|
|
1
1
|
|
|
2
2
|
[1mnpm[22m [33mwarn[39m [94mUnknown project config "auto-install-peers". This will stop working in the next major version of npm.[39m
|
|
3
3
|
|
|
4
|
-
> @vleap/warps-react@0.1.0-alpha.
|
|
5
|
-
> tsup src/index.ts --format
|
|
4
|
+
> @vleap/warps-react@0.1.0-alpha.70 build
|
|
5
|
+
> tsup src/index.ts --format esm --dts --minify
|
|
6
6
|
|
|
7
7
|
[34mCLI[39m Building entry: src/index.ts
|
|
8
8
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
9
9
|
[34mCLI[39m tsup v8.5.0
|
|
10
10
|
[34mCLI[39m Target: es2020
|
|
11
|
-
[34mCJS[39m Build start
|
|
12
11
|
[34mESM[39m Build start
|
|
13
|
-
[32mESM[39m [1mdist/index.
|
|
14
|
-
[32mESM[39m ⚡️ Build success in
|
|
15
|
-
[32mCJS[39m [1mdist/index.js [22m[32m14.00 B[39m
|
|
16
|
-
[32mCJS[39m ⚡️ Build success in 42ms
|
|
12
|
+
[32mESM[39m [1mdist/index.js [22m[32m0 B[39m
|
|
13
|
+
[32mESM[39m ⚡️ Build success in 59ms
|
|
17
14
|
DTS Build start
|
|
18
|
-
DTS ⚡️ Build success in
|
|
19
|
-
DTS dist/index.d.ts
|
|
20
|
-
DTS dist/index.d.mts 13.00 B
|
|
15
|
+
DTS ⚡️ Build success in 1526ms
|
|
16
|
+
DTS dist/index.d.ts 13.00 B
|
package/.turbo/turbo-lint.log
CHANGED
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
[1mnpm[22m [33mwarn[39m [94mUnknown project config "auto-install-peers". This will stop working in the next major version of npm.[39m
|
|
3
3
|
|
|
4
|
-
> @vleap/warps-react@0.1.0-alpha.
|
|
4
|
+
> @vleap/warps-react@0.1.0-alpha.69 test
|
|
5
5
|
> npm run lint
|
|
6
6
|
|
|
7
7
|
[1mnpm[22m [33mwarn[39m [94mUnknown env config "auto-install-peers". This will stop working in the next major version of npm.[39m
|
|
8
8
|
[1mnpm[22m [33mwarn[39m [94mUnknown project config "auto-install-peers". This will stop working in the next major version of npm.[39m
|
|
9
9
|
|
|
10
|
-
> @vleap/warps-react@0.1.0-alpha.
|
|
10
|
+
> @vleap/warps-react@0.1.0-alpha.69 lint
|
|
11
11
|
> eslint "./src/**/*.ts*"
|
|
12
12
|
|
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
package/package.json
CHANGED
|
@@ -1,16 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vleap/warps-react",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.1.0-alpha.70",
|
|
4
|
+
"type": "module",
|
|
5
5
|
"types": "./src/index.tsx",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./src/index.tsx",
|
|
9
|
+
"import": "./src/index.tsx",
|
|
10
|
+
"default": "./src/index.tsx"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
6
13
|
"license": "MIT",
|
|
7
14
|
"scripts": {
|
|
8
|
-
"build": "tsup src/index.ts --format
|
|
15
|
+
"build": "tsup src/index.ts --format esm --dts --minify",
|
|
9
16
|
"lint": "eslint \"./src/**/*.ts*\"",
|
|
10
17
|
"test": "npm run lint"
|
|
11
18
|
},
|
|
12
19
|
"dependencies": {
|
|
13
|
-
"@vleap/warps": "3.0.0-alpha.
|
|
20
|
+
"@vleap/warps": "3.0.0-alpha.73"
|
|
14
21
|
},
|
|
15
22
|
"peerDependencies": {
|
|
16
23
|
"react": ">=18.0.0",
|