Skip to content

Combine a list of JavaScript files Into a single master and minified version

License

Notifications You must be signed in to change notification settings

joelcarlton/Sublime-CombineAndMinify

Repository files navigation

Sublime-CombineAndMinify

Combine a list of JavaScript files Into a single master and minified version

Created

8/2013

Last Updated

12/2013

Version

1.0.2

Release Notes

1.0.2 (12/12/13)

  • Updated documentation to include absolute paths and notes

1.0.1 (08/27/13)

  • Added project description
  • Fixed syntax error

1.0.0 (08/2013)

  • Initial build

Setting Up CombineAndMinify

In order to use CombineAndMinify your project must be saved to a .sublime-project.

  1. Click Project from Menu Bar
  2. Click Save Project As
  3. Name and Save
  4. Click Project > Edit Project
  5. Add Settings for CombineAndMinify
  6. Save project file
  7. Make files.txt with a list of files that should be processed at the location specified with FileList
  8. Run by using key command, tools menu, right click menu, or command palette

Notes:

  1. Paths may need to be set up as absolute to work
  2. InPath and OutPath require a trailing directory /
Minimum Settings
{
	"settings":
	{
		"Combine: FileList": "/files.txt",
		"Combine: InPath": "/public/js/"
	}
}
Template
{
	"folders":
	[
		{
			"path": "/path/to/working/files"
		}
	],
	"settings":
	{
		"Combine: FileList": "/path/to/working/files/files.txt",
		"Combine: InPath": "/path/to/working/files/public/js/",
		"Combine: OutPath": "/path/to/working/files/private/js/",
		"Combine: MasterName": "master.js",
		"Combine: MinifyName": "master.min.js"
	}
}
files.txt
################ Comments Are Ignored ################
externaljs.js
externaljs2.js
Defaults
  • FileList and InPath are required.
  • OutPath is not required and will default to InPath unlesss specified otherwise.
  • MasterName and MinifyName are not required and will resolve to master.js and master.min.js unlesss specified otherwise

License

GNU GENERAL PUBLIC LICENSE Version 2, June 1991

About

Combine a list of JavaScript files Into a single master and minified version

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages