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

@nebula.js/cli-build

Package Overview
Dependencies
Maintainers
7
Versions
158
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nebula.js/cli-build - npm Package Compare versions

Comparing version 4.9.0 to 4.10.0

3

lib/config.js

@@ -64,3 +64,3 @@ const fs = require('fs');

cwd = process.cwd(),
argv = { sourcemap: true },
argv = { sourcemap: true, inlineDynamicImports: false },
core,

@@ -179,2 +179,3 @@ behaviours: {

format,
inlineDynamicImports: argv.inlineDynamicImports,
file: path.resolve(dir, outputFile),

@@ -181,0 +182,0 @@ name: outputName,

@@ -57,2 +57,8 @@ /* eslint global-require: 0, no-param-reassign: 0 */

},
inlineDynamicImports: {
description:
'In Rollup, inlineDynamicImports option is a configuration option that allows code-splitting while still creating a single bundle.',
type: 'boolean',
default: false,
},
};

@@ -59,0 +65,0 @@

{
"name": "@nebula.js/cli-build",
"version": "4.9.0",
"version": "4.10.0",
"description": "",

@@ -24,9 +24,9 @@ "license": "MIT",

"dependencies": {
"@babel/cli": "7.23.4",
"@babel/core": "7.23.3",
"@babel/cli": "7.23.9",
"@babel/core": "7.23.9",
"@babel/plugin-transform-react-jsx": "7.23.4",
"@babel/preset-env": "7.23.3",
"@babel/preset-env": "7.23.9",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "6.0.1",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",

@@ -37,4 +37,4 @@ "@rollup/plugin-replace": "5.0.5",

"extend": "3.0.2",
"postcss": "^8.4.31",
"rollup": "4.6.0",
"postcss": "^8.4.33",
"rollup": "4.9.6",
"rollup-plugin-postcss": "4.0.2",

@@ -45,7 +45,7 @@ "rollup-plugin-sourcemaps": "0.6.3",

"devDependencies": {
"@rollup/plugin-typescript": "11.1.5",
"@rollup/plugin-typescript": "11.1.6",
"tslib": "*",
"typescript": ">=5.3.2"
"typescript": ">=5.3.3"
},
"gitHead": "45dbf5b8fae64c7774b8ebabd3a94af33c7d2283"
"gitHead": "1be7d26b3c063c05c6d3e85c1ad2b097177dccb3"
}

@@ -19,14 +19,21 @@ # @nebula.js/cli-build

Options:
--version Show version number [boolean]
--config, -c Path to a JavaScript config file
[string] [default: "nebula.config.js"]
--watch, -w Watch source files
[choices: "umd", "systemjs"] [default: "umd"]
--sourcemap, -m Generate source map [boolean] [default: true]
--mode Explicitly set mode
[string] [choices: "production", "development"]
--core Set a core build target [string] [default: "core"]
--typescript Enable typescript bundling [boolean] [default: false]
--preferBuiltins Configuration option that specifies whether to use Node.js built-in modules [boolean] [default: true]
--browser Instructs the build to use the browser module resolutions in package.json and adds 'browser' to exportConditions if it is not present so browser conditionals in exports are applied. [boolean] [default: false]
--version Show version number [boolean]
--config, -c Path to a JavaScript config file
[string] [default: "nebula.config.js"]
--watch, -w Watch source files
[choices: "umd", "systemjs"] [default: "umd"]
--sourcemap, -m Generate source map [boolean] [default: true]
--mode Explicitly set mode
[string] [choices: "production", "development"]
--core Set a core build target [string] [default: "core"]
--typescript Enable typescript bundling [boolean] [default: false]
--preferBuiltins Specify whether to use Node.js built-in modules.
[boolean] [default: true]
--browser Use the browser module resolutions in package.json and adds
'browser' to exportConditions if it is not present so browser
conditionals in exports are applied.
[boolean] [default: false]
--inlineDynamicImports Inlines dynamic imports, allowing for code-splitting
regardless of format.
[boolean] [default: false]
```

@@ -33,0 +40,0 @@

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