@hackage zephyr0.3.1
Zephyr, tree-shaking for the PureScript language
Categories
License
MPL-2.0
Maintainer
Marcin Szamotulski <profunctor@pm.me>
Links
Versions
Installation
Tested Compilers
Dependencies (12)
- aeson >=1.0 && <1.5
- ansi-terminal >=0.7.1 && <0.11
- base >=4.8 && <5
- base-compat >=0.6.0
- boxes ^>=0.1.4
- containers Show all…
Dependents (0)
Package Flags
test-with-stack
(off by default)
use `stack exec zephyr` in tests
test-core-libs
(off by default)
test core libs
zephyr
An experimental tree-shaking tool for PureScript.
Usage
# compile your project (or use `pulp build -- -g corefn`)
purs compile -g corefn bower_components/purescript-*/src/**/*.purs src/**/*.purs
# run `zephyr`
zephyr -f Main.main
# bundle your code
webpack
or you can bundle with pulp:
pulp browserify --skip-compile -o dce-output -t app.js
You can also specify modules as entry points, which is the same as specifying all exported identifiers.
# include all identifiers from Data.Eq module
zephyr Data.Eq
# as above
zephyr module:Data.Eq
# include Data.Eq.Eq identifier of Data.Eq module
zephyr ident:Data.Eq.Eq
# include Data.Eq.eq identifier (not the lower case of the identifier!)
zephyr Data.Eq.eq
zephyr reads corefn json representation from output directory, removes non
transitive dependencies of entry points and dumps common js modules (or corefn
representation) to dce-output directory.
Zephyr eval
Zephyr can evaluate some literal expressions.
import Config (isProduction)
a = if isProduction
then "api/prod/"
else "api/dev/"
will be transformed to
a = "api/prod/"
whenever isProduction is true. This allows you to have different
development and production environment while still ship a minified code in your
production environment. You may define isProduction in a module under
a src-prod directory and include it when compiling production code with pulp build -I src-prod and to have another copy for your development environment
under src-dev where isProduction is set to false.
Build & Test
cabal build exe:zephyr
To run tests
cabal run zephyr-test
Comments
The -f switch is not 100% safe. Upon running, zephyr will remove exports from
foreign modules that seems to be not used: are not used in purescript code and
seem not to be used in the foreign module. If you simply assign to exports
using javascript dot notation then you will be fine, but if you use square
notation exports[var] in a dynamic way (i.e. var is a true variable rather
than a string literal), then zephyr might remove code that shouldn’t be
removed.
The best practice is to run a JavaScript tree-shaking algorithm via webpack or
rollup on the JavaScript code that is pulled in your bundle by foreign imports.