New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@tamagui/build

Package Overview
Dependencies
Maintainers
1
Versions
1211
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tamagui/build - npm Package Compare versions

Comparing version 1.0.1-beta.21 to 1.0.1-beta.23

3

package.json
{
"name": "@tamagui/build",
"version": "1.0.1-beta.21",
"version": "1.0.1-beta.23",
"bin": {

@@ -21,2 +21,3 @@ "tamagui-build": "tamagui-build.js"

"json5": "^2.2.0",
"lodash.debounce": "^4.0.8",
"typescript": "^4.5.2"

@@ -23,0 +24,0 @@ },

@@ -9,2 +9,3 @@ #!/usr/bin/env node

const createExternalPlugin = require('./externalNodePlugin')
const debounce = require('lodash.debounce')

@@ -179,5 +180,3 @@ const jsOnly = !!process.env.JS_ONLY

build().then(() => {
const finish = (_, path, stats) => {
build()
}
const rebuild = debounce(build, 100)
const chokidar = require('chokidar')

@@ -191,4 +190,4 @@ chokidar

})
.on('change', finish)
.on('add', finish)
.on('change', rebuild)
.on('add', rebuild)
})

@@ -195,0 +194,0 @@ } else {

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