@@ -829,14 +829,14 @@ if the `soy-milk` package is not installed on the host. This allows you to
829829integrate and interact with a variety of host packages without requiring
830830all of them to be installed.
831831
832- # ## bundledDependencies
832+ # ## bundleDependencies
833833
834834This defines an array of package names that will be bundled when publishing
835835the package.
836836
837837In cases where you need to preserve npm packages locally or have them
838838available through a single file download, you can bundle the packages in a
839- tarball file by specifying the package names in the ` bundledDependencies `
839+ tarball file by specifying the package names in the ` bundleDependencies `
840840array and executing ` npm pack` .
841841
842842For example:
@@ -847,7 +847,7 @@ If we define a package.json like this:
847847{
848848 " name" : " awesome-web-framework" ,
849849 " version" : " 1.0.0" ,
850- " bundledDependencies " : [
850+ " bundleDependencies " : [
851851 " renderized" ,
852852 " super-streams"
853853 ]
@@ -860,9 +860,9 @@ can be installed in a new project by executing `npm install
860860awesome-web-framework-1.0.0.tgz` . Note that the package names do not
861861include any versions, as that information is specified in ` dependencies` .
862862
863- If this is spelled ` " bundleDependencies " ` , then that is also honored.
863+ If this is spelled ` " bundledDependencies " ` , then that is also honored.
864864
865- Alternatively, ` " bundledDependencies " ` can be defined as a boolean value. A
865+ Alternatively, ` " bundleDependencies " ` can be defined as a boolean value. A
866866value of ` true` will bundle all dependencies, a value of ` false` will bundle
867867none.
868868
0 commit comments