@eigenspace/framer-bundle-minifier
v0.0.1930
Published
Minify Framer X exported index.html
Downloads
1,855
Readme
Framer Bundle Minifier
Minify Framer X exported index.html
Motivation
Before we've tried using this libraries:
HTML Minifier is freezing with enabled UglifyJS + it brokes styles. Also we can’t configure Clean CSS + UglifyJS.
HTMLNano also not works:
Error: SyntaxError: Unexpected token: operator (<)
How use it?
From code
- Just import
minify
from@eigenspace/framer-bundle-minifier
- Pass your
index.html
content into minify function - Get your minified version of content
From project
Type the following in terminal: /node_modules/@eigenspace/framer-bundle-minifier/index.js --from=index.html --to=index.min.html
Where:
- «from» is a required parameter
- «to» is optional. By default set as
<from-name>.min.html
.
TODO: From OS
https://github.com/eigen-space/framer-bundle-minifier/issues/1/
- Install
@eigenspace/framer-bundle-minifier
globally:for yarn:
yarn global add @eigenspace/framer-bundle-minifier
for npm:
npm install --global @eigenspace/framer-bundle-minifier
- Call script with your input and output paths:
@eigenspace/framer-bundle-minifier --i=index.html --o=index.min.html
Why do we have that dependencies?
@eigenspace/argument-parser
- get arguments from user input in terminal.clean-css
- CSS minifier.uglify-es
- JavaScript minifier.
Why do we have that dev dependencies?
@types/*
- contains type definitions for specific library.@eigenspace/eslint-config-codestyle
- project with eslint config files.@eigenspace/helper-scripts
- common scripts for dev. environment.eslint
- it checks code for readability, maintainability, and functionality errors.@eigenspace/codestyle
- includes lint rules, config for typescript.husky
- used for configure git hooks.lint-staged
- used for configure linters against staged git files.typescript
- is a superset of JavaScript that have static type-checking and ECMAScript features.