{"library":"parcel-bundler-without-deasync","title":"parcel-bundler-without-deasync","description":"A modified fork of Parcel v1.10.3 with the problematic native dependency 'deasync' removed. Parcel is a zero-configuration web application bundler offering fast builds via multicore parallelism. This specific release (v9.99.10, based on Parcel 1.10.3) was created to avoid installation issues caused by deasync, which often fails on non-standard Node.js environments. However, note that this package is outdated compared to the current Parcel v2.x and is not actively maintained. Use the official Parcel v2 for new projects.","language":"javascript","status":"abandoned","last_verified":"Fri May 01","install":{"commands":["npm install parcel-bundler-without-deasync"],"cli":{"name":"parcel","version":null}},"imports":["import Bundler from 'parcel-bundler-without-deasync'","const Bundler = require('parcel-bundler-without-deasync')","import Parcel from 'parcel-bundler-without-deasync'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import Bundler from 'parcel-bundler-without-deasync';\nimport path from 'path';\n\nconst entry = path.resolve(__dirname, 'index.html');\nconst bundler = new Bundler(entry, {\n  outDir: './dist',\n  watch: false,\n  cache: true,\n  contentHash: true,\n  minify: false,\n  scopeHoist: false,\n  target: 'browser',\n  bundleNodeModules: false,\n  logLevel: 3,\n});\n\nbundler.bundle().then(() => {\n  console.log('Build complete');\n}).catch(err => {\n  console.error(err);\n});","lang":"typescript","description":"Shows how to create a Parcel bundler instance, configure options, and run a build using the entry file.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}