For installation and upgrade instructions, see the installation and upgrade guide in the documentation. See here for requirements.
- Fixed a bug for the
enyo find-links
command that would not allow an absolute path to be passed in from the command line - Added correct implementation for
enyo config -r libraries [library]
to automatically remove thesources
andtargets
entry for the named libraries as was previously documented - Fixed issue where single-file projects would not build properly
- Fixed issue where using
enyo pack
could potentially create a target directory if it didn't already exist - When packaging libraries using the
--style-only
flag you can now use the--css-outfile
flag to designate the filename
- Make sure to READ ALL OF THE DOCUMENTATION AND EXAMPLES in the new and improved README.md documentation
- The primary tool for determining if a project is an enyo project is the existence of the .enyoconfig file and a "name" property
- Completely re-worked the find-links command
- User configuration files have changed location/names and use-case
- New project defaults config file
- The configuration options have changed
- There is a new --script-safe flag for scripts/server environments
- The configuration options have been cleanly separated by concerns between a project's .enyoconfig and those available in the package.json files, make sure to be aware of those changes
- The "link" property is now "links" in the .enyoconfig file
- For nearly all commands output is reserved for errors with very few exceptions
- As stated before, many of the command-line options for
enyo pack
(and subsequentlyenyo serve
) could be specified from the project's package.json file, this is no longer the case as there is a distinct separation from module/package options and tools/configuration options for .enyoconfig, read the documentation to see which options belong where - Removed dependence on the nodegit library opting instead to use gift (uses local version of
git
) - The sources object now only maps to remote source URI's and the tag/branch/commit-sha's are now in a
"targets"
object - Using private repositories, tags, commits and branches are all supported in the
"targets"
object of the.enyoconfig
file - Updated support for
--library
mode to also be able to map relative asset paths - Cache file will now appropriately be placed in the project directory even when built from a different location
- The default cache-file is now
.enyocache
instead of.e_cache
- Updated the default configuration file structure (
.enyoconfig
) for both the global-user version and the local project version - this is automatically updated when you runenyo init
and will preserve customizations - Fixed glob-pattern asset handling mechanism to work as expected
- NOTE: Use this pattern for grabbing ALL files in an assets directory example:
assets/**/*?(.*)
which will properly grab files of the formLICENSE
andimage.png
anywhere in the tree - This fix also applies to awkward directory and file names that include
.
- NOTE: Use this pattern for grabbing ALL files in an assets directory example:
- You can now add multiple entries to configuration arrays using comma-delimited lists (some examples below, explore the commands with
-h
to see all options)enyo config -a libraries enyo,moonstone,moonstone-extra
(add multiple entries)enyo config -r libraries enyo-webos,enyo-cordova
(remove multiple)enyo link enyo,moonstone,svg
(link multiple libraries at the same time)enyo unlink enyo,svg
(unlink multiple libraries at the same time)enyo unlink -U
(unlink all linked-libraries in the current project)
- The default
"paths"
array is now empty but the tools will always default to checking the defined"libDir"
if it was not in the"paths"
array after all specified paths have been exhausted - The
"isLibrary"
configuration option (--library
command-line flag) is now"library"
in the configuration for consistency - If a
.gitignore
file already exists in a project it will remain untouched byenyo init
- Added
--version
flag for the rootenyo
command (e.g. runenyo --version
from 0.5.1 and forward) - Added
--head-scripts
and--tail-scripts
options toenyo pack
to arbitrarily add scripts before or after other scripts - Added the
--less-var
list option toenyo pack
to be able to specify Less variables and values from the command-line - Added the
--style-only
flag toenyo pack
to only produce the style files from a particular build target - Added the
--promise-polyfill
option (false by default) to include a fallback polyfill for platforms that do not have native Promise support - Fixed several production mode output errors
- Fixed style ordering issues (especially in library builds)
- Uses faster algorithm when not using
request
functionality and faster algorithm when you are - The default entry module can be referenced from the console as
"index"
e.g.require("index")
- Wrapped output JavaScript no longer uses SHA1 hashes to identify
- Normalized behavior of tools with regards to paths -- all CLI paths are relative to the current working directory whereas paths evaluated from configuration files is relative to the package itself
- Projects now need a
.enyoconfig
file, libraries are initialized withenyo config --library
and configuration for other projects can be generated without downloading dependencies with the--no-dependencies
flag e.g.enyo init --no-dependencies
andenyo init --library
- The enyo-cordova library has been deprecated and as such removed as a default library from enyo-dev
- Removed dependency on browserify
- Removed dependency on bower
- Added the ability to generate packaged library output
- Added the ability to access modules from the web console
- Added new command
enyo
with accessible sub-commands - Added dynamic asset path expansion in JavaScript source
- Added the ability to use the
--watch
(auto-rebuild) feature without usingenyo-serve
- Added the ability to create on-demand loaded bundles of modules via the
request
function (EXPERIMENTAL) - Added more useful debugging information
- Added better error handling and reporting
- Added new logging utility capable of filtering output and outputing logs to filterable files
- Fixed
enyo-serve
- Example on accessing private repositories
- The
request
feature is still considered experimental and should be used with caution - The utility used to derive Git uri's is limited to basic git-ssh/https protocol formats at this time (e.g.
[email protected]:enyojs/enyo.git#master
andhttps://github.com/enyojs/enyo.git#2.6.0-dev
type uri's)
While the browserify project is very useful and generally extensible, it is slow and did not expose some of the features we needed most. Now we control our own dependency bundler that manages our source and packaging needs.
We no longer use the bower project underneath our egen init
and enyo init
commands. This means you can safely remove the bower.json
and .bowerrc
files from your project. There is a new way to specify libraries used by your projects and is discussed below with the addition of the enyo
command and sub-commands (namely enyo init
and enyo config
).
You can now generate the complete, includable output from any Enyo 2.6+ library. You do this with the --library
flag to epack
or enyo pack
. Most builds produce an index.html
file and only include the modules as required by any modules and an entry file (e.g. index.js). When building a library, it scans and includes all modules contained in the library source. For example, to build the complete, includable output from the Enyo library, navigate to the project root.
cd enyo
enyo pack --library
# check the ./dist directory for the output
Previously you would need to provide your own code to expose module content for debugging in the web console. Now this ability exists out of the box. For any library module you access (e.g. enyo/kind
) you can access it the same way in the console via the require
function directly. For your project modules just remember the path is relative to the project root, without the leading './'. So, for example, in the enyo-strawman project there is a module located at ./src/svg-samples
that exports an object with a few properties. To retrieve this same object at runtime in the web console use require('src/svg-samples')
. It's that simple! Make sure that the module is actually included in the final source by another module or it won't be available in the output.
There is a new command, enyo
, available once you've installed enyo-dev. It requires that you specify one of its child commands which can be listed using enyo -h
. These helpers were designed specifically for the Enyo developers' workflow and to assist when working with modularized code bases.
The
enyo-gen
andegen
commands are now a direct alias to the preferredenyo
command but could be removed in a future release. You should now useenyo
instead.
The
enyo-serve
,eserve
,enyo-pack
andepack
commands are now aliases forenyo serve
andenyo pack
respectively. It is still safe to use the aliases, however.
Previously
enyo-gen init
oregen init
This command is used to initialize a new Enyo project or re-initialize an existing project. Enyo now configures projects two different ways. For general configuration of projects and to disambiguate the use of the package.json
file the tools use a new file .enyoconfig
. The enyo init
command will generate a global reference for defaults at ~/.enyoconfig
that can be modified. It will also create one in the root of your projects. The .enyoconfig
file is JSON and is easily manipulated by hand or via the enyo config
command. It supports a special set of keys which can be listed using enyo config --list
or by reviewing any .enyoconfig
generated with the defaults.
Of particular interest are the "libraries"
and "sources"
properties. The "libraries"
array is a list of library names that should be installed for a particular project. The defaults list the most common Enyo related libraries. And there is no harm in having extra libraries aside from used disk-space. So, in most cases the defaults should be used. You can add/remove entries to the "libraries"
array using enyo config
as discussed below. The "sources"
object maps library names to their respective remote repository.
If used without arguments will make the current library/project available to be linked as a library in other projects. Then, in another project you can use it again with the name of the library and it will be installed without copying the files. This is most handy for framework development but is also useful for developers in some debugging scenarios. This can be handled automatically by enyo init
if the libraries are named in the .enyoconfig
"link"
array or the "linkAllLibs"
property or command-line flag are used. Also see the enyo find-links
command for convenient way to make multiple libraries linkable all at once. Note that using enyo link
assumes you will control the current target of the repository you are linking. You will need to ensure you have checked out the correct branch or tag.
cd Devel/enyo
enyo link
cd ../projects/myproject
enyo link enyo
# you will now have lib/enyo setup and linked to Devel/enyo
This command is the counterpart to the enyo link
command and conveniently unlinks the named library.
This is a helper command used to aid in finding and preparing libraries to be linked. For example, if you have a local clone of many Enyo libraries in a single directory simply enyo find-links
from within that directory or pass it a relative path to the directory and it will walk you through the projects and ask if you want them to be linked. If you use -i false
it won't ask and will assume you want all available libraries linkable.
cd Devel
enyo find-links -i false
cd projects/myproject
enyo link enyo
# you will now have lib/enyo setup and linked to enyo found in find-links
This is a convenience tool for modifying or accessing configuration settings for your global or local (project-level) configuration files (~/.enyoconfig
and .enyoconfig
respectively). When you run enyo init
you will be prompted to create the file (first at the global level if you don't already have one) in your local project. Configurations are considered in a particular resolution order: local setting -> local default setting -> global setting -> global default setting. As you will see by reviewing any .enyoconfig
generated with defaults it has an entry for each of the major known properties (use enyo config --list
to see all of the available options).
In a project with the defaults in .enyoconfig
:
enyo config --get libraries # -> undefined
enyo config --get defaults.libraries # -> 0=enyo, 1=layout, 2=canvas,...
enyo config --global --get libraries # -> undefined
enyo config --global --get defaults.libraries # -> 0=enyo, 1=layout, 2=canvas,...
The reason --get libraries
was undefined
is because there is no local entry for that property but there is a defaults.libraries
entry. When running, the tools would find the defaults and use them but you can override the defaults by creating your own "libraries"
array on the top level of the JSON manually or using the cli tool.
# add an entry to override defaults
enyo config libraries enyo
enyo config --get libraries # -> 0=enyo
enyo config --get defaults.libraries # -> 0=enyo, 1=layout, 2=canvas,...
enyo config -r libraries enyo
enyo config --get libraries # -> (nothing, no entries)
At this point if you run enyo init
it would only attempt to install/copy/link enyo
as that is the only local entry for the property. You can add or remove in this manner or modify the .enyoconfig
JSON directly. Make sure to read the enyo config -h
help output for more details on the optional use-cases of enyo config
.
Also note in the examples above we're modifying array entries and it handles that automatically. The same is true for other types such as booleans and strings:
enyo config linkAllLibs true
enyo config --get linkAllLibs # -> true
enyo config user.name "Cole Davis"
enyo config user.email [email protected]
enyo config --get user.name # -> Cole Davis
enyo config --get user.email # -> [email protected]
This is the preferred way to launch the test server. Still accessible through the aliases enyo-serve
and eserve
. Execute enyo serve -h
to see the supported parameters.
This is the preferred replacement for the (still active) aliases enyo-pack
and epack
. Execute enyo pack -h
to see the supported parameters.
There are times when you need to reference an asset path directly in JavaScript. The build tools automatically correct asset paths in CSS/Less style code and copy assets referenced in the package.json
"assets"
array to the correct output location based on any relevant configuration/packaging options. Now, in JavaScript you can have the same dynamic benefit.
In order for the build tools to understand that you want to expand a path you have to follow these three rules:
- Prefix the path with
@
- Use a relative path from the current source file to the asset OR
- Use a path starting with
@@
followed by an included library's name
So, if you had a project structure like this (not real):
assets/
myfile.png
lib/
moonstone/
images/
checkbox.png
src/
mymodule/
assets/
mysubfile.png
index.js
package.json
package.json
Assuming that both package.json
files had "assets": ["assets/**/*.png"]
in them (so all .png
files would be copied into the build), the following code in src/mymodule/index.js
would be correct:
// for the correct final output path of assets/myfile.png
var myfilepath = '@../../assets/myfile.png';
// for the correct final output path of src/mymodule/assets/mysubfile.png
var mysubfilepath = '@./assets/mysubfile.png';
// for the correct final output path of moonstone/images/checkbox.png
var moonfilepath = '@@moonstone/images/checkbox.png';
With standard configuration options, the final output file would contain:
// for the correct final output path of assets/myfile.png
var myfilepath = 'assets/myfile.png';
// for the correct final output path of src/mymodule/assets/mysubfile.png
var mysubfilepath = 'src/mymodule/assets/mysubfile.png';
// for the correct final output path of moonstone/images/checkbox.png
var moonfilepath = 'moonstone/images/checkbox.png';
So, why would you bother with the @@moonstone
at all since it just wrote the same thing?
There are a few reasons. First, there is no guarantee that future options won't exist that may change the output file locations dynamically. That reason alone should be enough to always let the build tools' transpiler do the work for you. The other reason is because you can specify an arbitrary location for these named variables with the --asset-root, -Z
CLI option or the "assetRoots"
array in the package.json file. If your application is built against moonstone but you will be including a pre-built library compilation exposed to your application from another location this option lets you correctly map to these assets.
// using the notation
var moonfilepath = '@@moonstone/images/checkbox.png';
And supplying the -Z moonstone=/fixed/resource/root/
(or using the special notation for all library static paths -Z *=/fixed/resource/root/
) from the CLI would produce:
var moonfilepath = '/fixed/resource/root/moonstone/images/checkbox.png';
The ability to watch your source code for changes and automatically rebuilding the output has been moved to enyo pack
when specifying the --watch
flag. This means in an environment where you are already outputting your packaged applications to a web root you don't need to run enyo serve
needlessly. Make sure to review enyo pack -h
for all available options relating to the --watch
command as different environments may require additional information.
Added the ability to create on-demand loaded bundles of modules via the request
function (EXPERIMENTAL)
More documentation on this in an official release as this feature is experimental and under development.
Packaging applications requires many complex steps and debugging possible errors can be painful. Sharing debugging output remotely can be even worse. This release added more useful debugging information that is highly versatile. By default, debugging is set to output fatal messages only, this way it can more efficiently do the work you expect it to. When it does produce logging information it is in JSON form. This makes it easier to store or transfer and it can be filtered.
NOTE: For human-friendly form please
npm install -g bunyan
. This is not required but is extremely useful.
Assuming you have bunyan
installed globally you can do the following to see verbose output from the build tools in a human readable way.
epack -l info | bunyan -o short
And in very tricky scenarios you could use
epack -l debug | bunyan -o short
This is only useful as long as you have the output in your terminal buffer. It is very easy to store the output to filter later or pass to another developer to help debug an issue.
# works in Windows, OS X and Linux
epack -l debug > build_log.txt
This can later be reviewed using the bunyan
cli tool
bunyan -o short build_log.txt
The build tools separates its steps into different components. This allows us to filter output by the component of interest. For example, if you were debugging why it was not finding a particular module you could do the following:
epack -l debug > build_log.txt
bunyan -o short -c 'this.component == "process-source-stream"' build_log.txt
As stated above, adding libraries to your configuration is quite simple. Add the library name to the "libraries"
configuration array and an entry mapping the name to its remote location on the "sources"
configuration object.
NOTE: There is currently a limitation in the tools that will not properly authenticate users for private repositories! Use the below method to get around this limitation while that implementation is being completed.
- Create a local clone of the private repository using standard
git
commands (e.g.git clone https://github.com/organization/repository.git
) - From within that repository, run
enyo link
Now whenever you need this library in a project, simply add it to the "link"
and "libraries"
arrays or manually link it yourself via enyo link [repository]
.