Releases: pingyhq/pingy-cli
CLI 0.6.13
- Added typescript to
pingy init
CLI 0.6.12
Features
- Support globally installed modules (Re: #8)
Just add globalModuleSearch
to your .pingy.json
.
{
"name": "my-site",
"foo": "bar",
"globalModuleSearch": true
}
CLI 0.6.11
Bugfix
Document root not being served if it's compiled. Fixes #44.
CLI 0.6.9
CLI 0.6.10
Features
- Add Yarn install support. You can now do
pingy init --yarn
to install packages with Yarn instead of NPM. (#26)
CLI 0.6.8
CLI 0.7.0 Beta
What's New
- Added pre-release autoprefixing support
How do I install
You can install it using:
npm install @pingy/cli@next
Note the @next
at the end because I want more people using it before I release to the main channel.
Notes
To enable autoprefix then just add the following entry to your .pingy.json
:
{
//...
"autoprefix": true,
//...
}
This will default to autoprefixing for the last 2 browser versions if set to true
. But you can also set it to a string
or an array
of strings
(e.g.. ["> 5%", "last 1 version"]
). More info on available queries here.
Remaining Issues
If you're using Less/Sass/Stylus/etc.. then you don't need to worry about the following, it is only an issue for those using vanilla (no-compiler) CSS.
If you're using vanilla CSS then autoprefixing won't work for pingy dev
, it will only work for pingy export
. This is due to the way that I have architected Pingy CLI internally to serve uncompiled files directly from disk. More time is needed to re-architect Pingy CLI and get this working cleanly.
Reporting Bugs
If you are having issues related to autoprefix support then please comment on this issue.