Skip to content

Instantly share code, notes, and snippets.

View antxd's full-sized avatar
:octocat:
evolving

Jose Marin antxd

:octocat:
evolving
View GitHub Profile

If .DS_Store was never added to your git repository, simply add it to your .gitignore file.

If you don't have one, create a file called

.gitignore

In your the root directory of your app and simply write

@antxd
antxd / minify.php
Created September 2, 2019 16:07
A small PHP-Script for minifying CSS
<?php
// specify your css-files and their order here
$cssFiles = array(
'normalize.css', 'style.css', 'print.css', 'colorbox.css'
);
// the file to write the compressed css to
$minFileName = 'minified.css';
// thats all, just call this file in your browser and it will
// build you a minimized css-file. then just link to this single