@@ -829,14 +829,14 @@ if the `soy-milk` package is not installed on the host. This allows you to
829
829
integrate and interact with a variety of host packages without requiring
830
830
all of them to be installed.
831
831
832
- # ## bundledDependencies
832
+ # ## bundleDependencies
833
833
834
834
This defines an array of package names that will be bundled when publishing
835
835
the package.
836
836
837
837
In cases where you need to preserve npm packages locally or have them
838
838
available 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 `
840
840
array and executing ` npm pack` .
841
841
842
842
For example:
@@ -847,7 +847,7 @@ If we define a package.json like this:
847
847
{
848
848
" name" : " awesome-web-framework" ,
849
849
" version" : " 1.0.0" ,
850
- " bundledDependencies " : [
850
+ " bundleDependencies " : [
851
851
" renderized" ,
852
852
" super-streams"
853
853
]
@@ -860,9 +860,9 @@ can be installed in a new project by executing `npm install
860
860
awesome-web-framework-1.0.0.tgz` . Note that the package names do not
861
861
include any versions, as that information is specified in ` dependencies` .
862
862
863
- If this is spelled ` " bundleDependencies " ` , then that is also honored.
863
+ If this is spelled ` " bundledDependencies " ` , then that is also honored.
864
864
865
- Alternatively, ` " bundledDependencies " ` can be defined as a boolean value. A
865
+ Alternatively, ` " bundleDependencies " ` can be defined as a boolean value. A
866
866
value of ` true` will bundle all dependencies, a value of ` false` will bundle
867
867
none.
868
868
0 commit comments