@vleap/warps-react 0.1.0-alpha.82 → 0.1.0-alpha.84

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.
@@ -1,15 +1,17 @@
1
1
 
2
2
  
3
- > @vleap/warps-react@0.1.0-alpha.82 build
3
+ > @vleap/warps-react@0.1.0-alpha.84 build
4
4
  > tsup src/index.ts --format esm --dts --minify
5
5
 
6
6
  CLI Building entry: src/index.ts
7
7
  CLI Using tsconfig: tsconfig.json
8
8
  CLI tsup v8.5.0
9
+ CLI Using tsup config: /Users/michavie/Code/warps--sdk-js/packages/react/tsup.config.mjs
9
10
  CLI Target: es2020
11
+ CLI Cleaning output folder
10
12
  ESM Build start
11
- ESM dist/index.js 0 B
12
- ESM ⚡️ Build success in 79ms
13
+ ESM dist/index.mjs 0 B
14
+ ESM ⚡️ Build success in 13ms
13
15
  DTS Build start
14
- DTS ⚡️ Build success in 1908ms
16
+ DTS ⚡️ Build success in 2430ms
15
17
  DTS dist/index.d.ts 13.00 B
@@ -1,6 +1,5 @@
1
1
 
2
- npm warn Unknown project config "auto-install-peers". This will stop working in the next major version of npm.
3
-
4
- > @vleap/warps-react@0.1.0-alpha.69 lint
2
+ 
3
+ > @vleap/warps-react@0.1.0-alpha.83 lint
5
4
  > eslint "./src/**/*.ts*"
6
5
 
@@ -1,9 +1,9 @@
1
1
 
2
2
  
3
- > @vleap/warps-react@0.1.0-alpha.81 test
3
+ > @vleap/warps-react@0.1.0-alpha.83 test
4
4
  > npm run lint
5
5
 
6
6
 
7
- > @vleap/warps-react@0.1.0-alpha.81 lint
7
+ > @vleap/warps-react@0.1.0-alpha.83 lint
8
8
  > eslint "./src/**/*.ts*"
9
9
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @vleap/warps-react
2
2
 
3
+ ## 0.1.0-alpha.84
4
+
5
+ ### Minor Changes
6
+
7
+ - 455faa2: update builds
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [8c61537]
12
+ - Updated dependencies [455faa2]
13
+ - @vleap/warps@3.0.0-alpha.87
14
+
15
+ ## 0.1.0-alpha.83
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [eff7bda]
20
+ - @vleap/warps@3.0.0-alpha.86
21
+
3
22
  ## 0.1.0-alpha.82
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.82",
3
+ "version": "0.1.0-alpha.84",
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.85"
20
+ "@vleap/warps": "3.0.0-alpha.87"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "react": ">=18.0.0",
@@ -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
@@ -1,2 +0,0 @@
1
-
2
- export { }
package/dist/index.js DELETED
File without changes