ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Combiner

:dart: Combine and minify a list of local or remote CSS and/or Javascript files into a single one with Sublime Text

Details

Installs

  • Total 903
  • Win 576
  • Mac 268
  • Linux 59
Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5 Mar 4 Mar 3 Mar 2 Mar 1 Feb 28 Feb 27 Feb 26 Feb 25 Feb 24 Feb 23 Feb 22 Feb 21 Feb 20 Feb 19 Feb 18 Feb 17
Windows 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Combiner

Combine a list of local or remote CSS and/or Javascript files into a single one with Sublime Text. Now, it can also minify CSS, Javascript and/or HTML files using online minifiers.

How to use

Just place the following combiner declaration in any file:

/*
Combiner:{
  combine:"/path/to/file1.css",
  combine:"/path/to/file2.css",
  combine:"/path/to/file3.css",
  output:"/path/to/output.file.css"
}
*/

Also you can include multiple Combiner declaration in the same file:

<head>
    ...


    <link rel="stylesheet" href="css/style.css">
    ...
  </head>
  <body>
    <h1>Hello, world!</h1>
    ...


    <script src=js/scripts.js"></script>
  </body>

Or you can create an individual file (txt, json, cfg…) just for Combiner declarations:

{
  "Combiner_CSS":{
    combine:"/path/to/file1.css",
    combine:"/path/to/file2.css",
    combine:"/path/to/file3.css",
    output:"/path/to/output.file.css"
  },

  "Combiner_JS":{
    combine:"/path/to/file1.js",
    combine:"/path/to/file2.js",
    combine:"/path/to/file3.js",
    output:"/path/to/output.file.js"
  },

  "Combiner_LIB":{
    combine:"/path/to/file1.js",
    combine:"/path/to/file2.js",
    combine:"/path/to/file3.js",
    output:"/path/to/output.file.js"
  }
}

Everytime you want to combine files you can use the Context Menu inside the Sublime Text editor window, access the Combiner command under Tools menu in Sublime Text or use the keyboard shortcut: ctrl (super in MacOs X) + alt + c

Remote Files

You can get remote files and combine then in just one local file, only restriction is you have to declare in the same block the same type of files (remote or local)

{ 
  "Combiner_CSS_CDN":{
    combine:"https://remote/path/to/file1.css",
    combine:"https://remote/path/to/file2.css",
    combine:"https://remote/path/to/file3.css",
    output:"/local/path/to/output.file.css"
  },

  "Combiner_CSS":{
    combine:"/path/to/file1.css",
    combine:"/path/to/file2.css",
    combine:"/path/to/file3.css",
    output:"/path/to/output.file.css"
  },

  "Combiner_JS_LIBS":{
    combine:"https://remote/path/to/file1.js",
    combine:"https://remote/path/to/file1.js",
    combine:"https://remote/path/to/file1.js",
    output:"/local/path/to/output.file.js"
  },

  "Combiner_JS":{
    combine:"/path/to/file1.js",
    combine:"/path/to/file2.js",
    combine:"/path/to/file3.js",
    output:"/path/to/output.file.js"
  }
}

Or even you can use it just to download only a single remote file

{ 
  "Combiner_CSS":{
    combine:"https://remote/path/to/file1.css",
    output:"/local/path/to/output.file.css"
  },

  "Combiner_JS_LIBS":{
    combine:"https://remote/path/to/file1.js",
    output:"/local/path/to/output.file.js"
  }
}

Minimize

Also, you can minimize the combined file (or the files you want) using online minifiers created by @andychilton. You just need to use the Context Menu inside the Sublime Text editor window, access the Combiner command under Tools menu in Sublime Text or use the keyboard shortcut: ctrl (super in MacOs X) + alt + m. A new file will be created in the same location of the open one, with the same name adding suffix min. You need internet connection to use minification features.



Installation

Open the Command Palette and select “Package Control: Install Package”. Search for “Combiner”.