mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 19:33:02 +03:00
19383f27f7
- Uglify was really slow and clunky, so replaced with terser which is fast and simple - Ensured test cleanup works properly so we can be sure about the state of files during tests - Changed the output from being the absolute path to just the "dest" value, as that is much more useful as absolute paths include local machine path names - Fixed async/await issue that got the whole thing working 100% |
||
---|---|---|
.. | ||
lib | ||
test | ||
.eslintrc.js | ||
index.js | ||
LICENSE | ||
package.json | ||
README.md |
Minifier
Install
npm install @tryghost/minifier --save
or
yarn add @tryghost/minifier
Usage
const Minifier = require('@tryghost/minifier');
const minifier = new Minifier({
src: 'my/src/path',
dest: 'my/dest/path'
});
minifier.minify({
'some.css': '*.css',
'then.js': '!(other).js'
});
- Minfier constructor requires a src and a dest
- minify() function takes an object with destination file as the key and source glob as the value
- globs can be anything tiny-glob supports
- destination files must end with .css or .js
- src files will be minified according to their destination file extension
Develop
This is a mono repository, managed with lerna.
Follow the instructions for the top-level repo.
git clone
this repo &cd
into it as usual- Run
yarn
to install top-level dependencies.
Run
yarn dev
Test
yarn lint
run just eslintyarn test
run lint and tests
Copyright & License
Copyright (c) 2013-2021 Ghost Foundation - Released under the MIT license.