19d2411f2b
- @tryghost/adapter-manager@0.2.27 - @tryghost/bootstrap-socket@0.2.16 - @tryghost/config-url-helpers@0.1.4 - @tryghost/constants@1.0.1 - @tryghost/database-info@0.1.0 - @tryghost/errors@1.2.1 - @tryghost/image-transform@1.0.27 - @tryghost/job-manager@0.8.18 - @tryghost/limit-service@1.0.9 - @tryghost/minifier@0.1.10 - @tryghost/moleculer-service-from-class@0.2.22 - @tryghost/mw-error-handler@0.1.2 - @tryghost/mw-session-from-token@0.1.27 - @tryghost/mw-update-user-last-seen@0.1.2 - @tryghost/package-json@1.0.15 - @tryghost/pretty-cli@1.2.23 - @tryghost/promise@0.1.14 - @tryghost/release-utils@0.7.10 - @tryghost/security@0.2.14 - @tryghost/session-service@0.1.37 - @tryghost/settings-path-manager@0.1.3 - @tryghost/vhost-middleware@1.0.20 - @tryghost/zip@1.1.19 |
||
---|---|---|
.. | ||
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-2022 Ghost Foundation - Released under the MIT license.