2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00
Ghost/ghost/minifier
Sam Lord e1cc803ca3 Published new versions
- @tryghost/adapter-manager@0.2.24
 - @tryghost/errors@1.1.0
 - @tryghost/image-transform@1.0.24
 - @tryghost/limit-service@1.0.6
 - @tryghost/minifier@0.1.7
 - @tryghost/package-json@1.0.12
 - @tryghost/release-utils@0.7.7
 - @tryghost/session-service@0.1.34
2021-12-01 17:29:28 +00:00
..
lib 🐛 Ensured directory exists before attempting write 2021-11-19 12:50:54 +00:00
test Reworked minifier to have 100% coverage 2021-11-03 14:25:02 +00:00
.eslintrc.js Minifier initial version 2021-11-03 14:16:49 +00:00
index.js Minifier initial version 2021-11-03 14:16:49 +00:00
LICENSE Minifier initial version 2021-11-03 14:16:49 +00:00
package.json Published new versions 2021-12-01 17:29:28 +00:00
README.md Minifier initial version 2021-11-03 14:16:49 +00:00

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.

  1. git clone this repo & cd into it as usual
  2. Run yarn to install top-level dependencies.

Run

  • yarn dev

Test

  • yarn lint run just eslint
  • yarn test run lint and tests

Copyright & License

Copyright (c) 2013-2021 Ghost Foundation - Released under the MIT license.