Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

alien-signals

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alien-signals - npm Package Compare versions

Comparing version 0.2.2 to 0.3.0-alpha.0

types/computed.d.ts

21

package.json
{
"name": "alien-signals",
"version": "0.2.2",
"version": "0.3.0-alpha.0",
"license": "MIT",
"packageManager": "pnpm@9.12.0",
"type": "commonjs",
"types": "./cjs/index.d.ts",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./cjs/index.d.ts",
"types": "./types/index.d.ts",
"import": "./esm/index.mjs",
"require": "./cjs/index.js"
"require": "./cjs/index.cjs"
},
"./cjs": {
"types": "./cjs/index.d.ts",
"import": "./cjs/index.js",
"require": "./cjs/index.js"
"types": "./types/index.d.ts",
"import": "./cjs/index.cjs",
"require": "./cjs/index.cjs"
},
"./esm": {
"types": "./cjs/index.d.ts",
"types": "./types/index.d.ts",
"import": "./esm/index.mjs",

@@ -36,3 +35,5 @@ "require": "./esm/index.mjs"

"prepublishOnly": "npm run build",
"build": "tsc && esbuild src/index.ts --bundle --format=esm --outfile=esm/index.mjs",
"build": "tsc && npm run build:esm && npm run build:cjs",
"build:esm": "esbuild src/index.ts --bundle --format=esm --outfile=esm/index.mjs --minify",
"build:cjs": "esbuild src/index.ts --bundle --format=cjs --outfile=cjs/index.cjs --minify",
"test": "vitest run"

@@ -39,0 +40,0 @@ },

@@ -73,5 +73,5 @@ # alien-signals

|---------|-----------------------------------------------------------------------------------------------|
| 0.3 | Correctly schedule child effect scopes |
| 0.3 | ~~Correctly schedule child effect scopes~~ |
| 0.2 | Correctly schedule computed side effects |
| 0.1 | Correctly schedule inner effect callbacks |
| 0.0 | Add APIs: `signal()`, `computed()`, `effect()`, `effectScope()`, `startBatch()`, `endBatch()` |

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc