@preact-signals/unified-signals
Advanced tools
Comparing version 0.2.2 to 0.2.3
# @preact-signals/unified-signals | ||
## 0.2.3 | ||
### Patch Changes | ||
- caf17f2: Fixes [problem with next.js resolver](https://github.com/XantreGodlike/preact-signals/issues/72). Added module specific extension prefixes `.cjs`, `.mjs` | ||
## 0.2.2 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "@preact-signals/unified-signals", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"private": false, | ||
@@ -22,4 +22,4 @@ "publishConfig": { | ||
"type": "module", | ||
"module": "./dist/esm/index.js", | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.mjs", | ||
"main": "./dist/cjs/index.cjs", | ||
"types": "./src/index.d.ts", | ||
@@ -31,5 +31,7 @@ "source": "./src/index.ts", | ||
"types": "./src/index.d.ts", | ||
"import": "./dist/esm/index.js", | ||
"require": "./dist/cjs/index.js" | ||
} | ||
"import": "./dist/esm/index.mjs", | ||
"require": "./dist/cjs/index.cjs", | ||
"react-native": "./src/index.ts" | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
@@ -59,3 +61,9 @@ "peerDependencies": { | ||
"concurrently": "^8.2.2", | ||
"happy-dom": "^10.11.2" | ||
"happy-dom": "^10.11.2", | ||
"check-export-map": "^1.3.0", | ||
"rollup": "^3.29.4", | ||
"rollup-plugin-esbuild": "^5.0.0", | ||
"rollup-plugin-node-externals": "^6.1.2", | ||
"@rollup/plugin-replace": "^5.0.5", | ||
"@rollup/plugin-typescript": "^11.1.5" | ||
}, | ||
@@ -66,9 +74,8 @@ "keywords": [], | ||
"clean": "rimraf dist", | ||
"build:esm": "tsc --outDir ./dist/esm", | ||
"build:cjs": "tsc --module commonjs --outDir ./dist/cjs", | ||
"test": "vitest", | ||
"lint": "tsc --noEmit", | ||
"watch": "concurrently \"pnpm build:esm -w\" \"pnpm build:cjs -w\"", | ||
"build": "pnpm clean && concurrently \"pnpm build:esm\" \"pnpm build:cjs\"" | ||
"lint": "tsc --noEmit && check-export-map", | ||
"build:rollup": "rollup -c", | ||
"watch": "pnpm build:rollup -w", | ||
"build": "pnpm clean && pnpm build:rollup" | ||
} | ||
} |
@@ -5,3 +5,3 @@ { | ||
"noEmit": false, | ||
"outDir": "./dist/esm", | ||
"outDir": "./dist/types", | ||
"emitDeclarationOnly": false, | ||
@@ -14,2 +14,3 @@ "sourceMap": true, | ||
"**/node_modules/**", | ||
"rollup.config.mjs", | ||
"vitest.config.ts", | ||
@@ -16,0 +17,0 @@ "**/*.test.*" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
76481
56
601
9
8
1