@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.
@@ -1,20 +1,16 @@
1
1
 
2
2
  npm warn Unknown project config "auto-install-peers". This will stop working in the next major version of npm.
3
3
 
4
- > @vleap/warps-react@0.1.0-alpha.69 build
5
- > tsup src/index.ts --format cjs,esm --dts --minify
4
+ > @vleap/warps-react@0.1.0-alpha.70 build
5
+ > tsup src/index.ts --format esm --dts --minify
6
6
 
7
7
  CLI Building entry: src/index.ts
8
8
  CLI Using tsconfig: tsconfig.json
9
9
  CLI tsup v8.5.0
10
10
  CLI Target: es2020
11
- CJS Build start
12
11
  ESM Build start
13
- ESM dist/index.mjs 0 B
14
- ESM ⚡️ Build success in 42ms
15
- CJS dist/index.js 14.00 B
16
- CJS ⚡️ Build success in 42ms
12
+ ESM dist/index.js 0 B
13
+ ESM ⚡️ Build success in 59ms
17
14
  DTS Build start
18
- DTS ⚡️ Build success in 1287ms
19
- DTS dist/index.d.ts 13.00 B
20
- DTS dist/index.d.mts 13.00 B
15
+ DTS ⚡️ Build success in 1526ms
16
+ DTS dist/index.d.ts 13.00 B
@@ -1,5 +1,6 @@
1
1
 
2
- 
3
- > @vleap/warps-react@0.1.0-alpha.59 lint
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
4
5
  > eslint "./src/**/*.ts*"
5
6
 
@@ -1,12 +1,12 @@
1
1
 
2
2
  npm warn Unknown project config "auto-install-peers". This will stop working in the next major version of npm.
3
3
 
4
- > @vleap/warps-react@0.1.0-alpha.68 test
4
+ > @vleap/warps-react@0.1.0-alpha.69 test
5
5
  > npm run lint
6
6
 
7
7
  npm warn Unknown env config "auto-install-peers". This will stop working in the next major version of npm.
8
8
  npm warn Unknown project config "auto-install-peers". This will stop working in the next major version of npm.
9
9
 
10
- > @vleap/warps-react@0.1.0-alpha.68 lint
10
+ > @vleap/warps-react@0.1.0-alpha.69 lint
11
11
  > eslint "./src/**/*.ts*"
12
12
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @vleap/warps-react
2
2
 
3
+ ## 0.1.0-alpha.70
4
+
5
+ ### Minor Changes
6
+
7
+ - 19db0e8: fix tests + move to esm
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [19db0e8]
12
+ - @vleap/warps@3.0.0-alpha.73
13
+
3
14
  ## 0.1.0-alpha.69
4
15
 
5
16
  ### Patch Changes
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.69",
4
- "main": "./src/index.tsx",
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 cjs,esm --dts --minify",
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.72"
20
+ "@vleap/warps": "3.0.0-alpha.73"
14
21
  },
15
22
  "peerDependencies": {
16
23
  "react": ">=18.0.0",