0.1.0 • Published 11 years ago

anvil.cdnjs v0.1.0

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

anvil.cdnjs

anvil.js plugin for installing files from cdnjs. Click here see it in action, here's

To install, run...

anvil install anvil.cdnjs

Searching

To search for a package to install...

anvil --cdjs:search [packageName]

This will return a list of the packages matching packageName

Installing

There are two ways to install a library.

One way is to install them individually by running...

anvil --cdnjs:install [packageName]

The other way is by working with the build.json file.

{
	"anvil.cdnjs": {
		"libs":{
			"jquery": {},
			"backbone.js": {},
			"underscore.js": {}
		}
	}
}

Then run...

anvil --cdnjs:install

When installing individually or by the build.json way, the build file will be updated with metadata from cdnjs.

{
    "anvil.cdnjs": {
        "libs": {
            "jquery": {
                "version": "1.8.3",
                "url": "http://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.3/jquery.min.js"
            },
            "knockout": {
                "version": "2.2.0",
                "url": "http://cdnjs.cloudflare.com/ajax/libs/knockout/2.2.0/knockout-min.js"
            },
            "backbone.js": {
                "version": "0.9.9",
                "url": "http://cdnjs.cloudflare.com/ajax/libs/backbone.js/0.9.9/backbone-min.js"
            },
            "underscore.js": {
                "version": "1.4.3",
                "url": "http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.3/underscore-min.js"
            }
        }
    }
}

Configuring

You can configure where the libraries are installed by setting the output variable.

{
	"anvil.cdnjs": {
		"output": "src/js/vendor"
	}
}
0.1.0

11 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago