@vleap/warps-react 0.1.0-alpha.83 → 0.1.0-alpha.85
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 -4
- package/.turbo/turbo-lint.log +2 -3
- package/.turbo/turbo-test.log +2 -2
- package/CHANGELOG.md +19 -0
- package/package.json +2 -2
- package/tsup.config.mjs +13 -0
- package/dist/index.d.mts +0 -2
- package/dist/index.js +0 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @vleap/warps-react@0.1.0-alpha.
|
|
3
|
+
> @vleap/warps-react@0.1.0-alpha.85 build
|
|
4
4
|
> tsup src/index.ts --format esm --dts --minify
|
|
5
5
|
|
|
6
6
|
[34mCLI[39m Building entry: src/index.ts
|
|
7
7
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
8
8
|
[34mCLI[39m tsup v8.5.0
|
|
9
|
+
[34mCLI[39m Using tsup config: /Users/michavie/Code/warps--sdk-js/packages/react/tsup.config.mjs
|
|
9
10
|
[34mCLI[39m Target: es2020
|
|
11
|
+
[34mCLI[39m Cleaning output folder
|
|
10
12
|
[34mESM[39m Build start
|
|
11
|
-
[32mESM[39m [1mdist/index.
|
|
12
|
-
[32mESM[39m ⚡️ Build success in
|
|
13
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m0 B[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 10ms
|
|
13
15
|
DTS Build start
|
|
14
|
-
DTS ⚡️ Build success in
|
|
16
|
+
DTS ⚡️ Build success in 1921ms
|
|
15
17
|
DTS dist/index.d.ts 13.00 B
|
package/.turbo/turbo-lint.log
CHANGED
package/.turbo/turbo-test.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @vleap/warps-react
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.85
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [13b6127]
|
|
8
|
+
- @vleap/warps@3.0.0-alpha.88
|
|
9
|
+
|
|
10
|
+
## 0.1.0-alpha.84
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 455faa2: update builds
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [8c61537]
|
|
19
|
+
- Updated dependencies [455faa2]
|
|
20
|
+
- @vleap/warps@3.0.0-alpha.87
|
|
21
|
+
|
|
3
22
|
## 0.1.0-alpha.83
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vleap/warps-react",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.85",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "./src/index.tsx",
|
|
6
6
|
"exports": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"test": "npm run lint"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@vleap/warps": "3.0.0-alpha.
|
|
20
|
+
"@vleap/warps": "3.0.0-alpha.88"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"react": ">=18.0.0",
|
package/tsup.config.mjs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { defineConfig } from 'tsup'
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
entry: ['src/index.ts'],
|
|
5
|
+
dts: true,
|
|
6
|
+
format: ['esm', 'cjs'],
|
|
7
|
+
outExtension: ({ format }) => ({
|
|
8
|
+
js: format === 'esm' ? '.mjs' : '.js',
|
|
9
|
+
}),
|
|
10
|
+
minify: true,
|
|
11
|
+
clean: true,
|
|
12
|
+
skipNodeModulesBundle: true,
|
|
13
|
+
})
|
package/dist/index.d.mts
DELETED
package/dist/index.js
DELETED
|
File without changes
|