Tag: npm
-
Mar 28, 2017
Installing npm packages into a Unity project
Installing npm packages that are enabled to work with the unity3d-package-syncer tool is a fairly straightforward process!
-
Mar 27, 2017
Creating an npm package with DLLs instead of scripts
The overall process is essentially the same as before except source files should be placed into a folder somewhere outside of the “assets” folder. A workflow can then be added using an npm script, a makefile, a shell script, a batch file, a gulp file, or whatever type of automation system that you prefer to use to initiate the building of the DLLs.
-
Mar 26, 2017
Structuring an npm package for Unity
As with all npm packages; each package requires a “package.json” file to identify the package and any dependencies that it may have.
-
Mar 20, 2017
Package management for Unity projects
As many of us have found; when working with even small projects you end up having many variations of reusable source code scattered across the projects. In some situations you will even find yourself having a project that has many versions of the exact same JSON library since each asset bundles it within a unique (or sometimes clashing) namespace.