CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 24 Aug 2025 03:57:44 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100213153419
location: https://web.archive.org/web/20100213153419/https://github.com/subtleGradient/packager
server-timing: captures_list;dur=0.545802, exclusion.robots;dur=0.018593, exclusion.robots.policy;dur=0.008188, esindex;dur=0.014756, cdx.remote;dur=5.148537, LoadShardBlock;dur=303.617744, PetaboxLoader3.datanode;dur=49.812526, PetaboxLoader3.resolve;dur=79.991661
x-app-server: wwwb-app214
x-ts: 302
x-tr: 340
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app214; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sun, 24 Aug 2025 03:57:45 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Sat, 13 Feb 2010 15:34:19 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "a0c5faf0b470c5a6de3b2abfe16a756d"
x-archive-orig-x-runtime: 123ms
x-archive-orig-content-length: 22713
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sat, 13 Feb 2010 15:34:19 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 13 Feb 2010 15:34:19 GMT", ; rel="memento"; datetime="Sat, 13 Feb 2010 15:34:19 GMT", ; rel="next memento"; datetime="Tue, 07 Sep 2010 00:41:54 GMT", ; rel="last memento"; datetime="Sat, 19 Sep 2020 22:00:04 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: TLA-20100213110428-00770-00779-ia360906-20100709033331-00000/TLA-20100213151657-00777-ia360906.us.archive.org.warc.gz
server-timing: captures_list;dur=0.746381, exclusion.robots;dur=0.027768, exclusion.robots.policy;dur=0.011524, esindex;dur=0.018608, cdx.remote;dur=24.518840, LoadShardBlock;dur=234.595673, PetaboxLoader3.resolve;dur=231.376719, PetaboxLoader3.datanode;dur=81.196923, load_resource;dur=110.961763
x-app-server: wwwb-app214
x-ts: 200
x-tr: 432
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
subtleGradient's packager at master - GitHub
This service is courtesy of Pledgie.
subtleGradient / packager forked from kamicane/packager
- Source
- Commits
- Network (3)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
-
Branches (1)
- master ✓
- Tags (0)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
builds packages using the package.yml MooTools syntax — Read more

Thomas Aylott (author)
Mon Dec 14 20:36:34 -0800 2009
packager /
name | age | message | |
---|---|---|---|
![]() |
README.md | Loading commit data... ![]() |
|
![]() |
build | ||
![]() |
helpers/ | ||
![]() |
libs/ | ||
![]() |
license.txt | ||
![]() |
packager.php |
README.md
Packager API
Files
Getters
get_all_files
» get an ordered list of all filesget_file_depends
» gets an ordered list of every file that this file depends onget_file_path
» gets the file pathget_file_source
» gets the file sourceget_file_description
» gets the file descriptionget_file_provides
» gets a list of the file provided components
Converters
complete_files
» converts a list of files to an ordered list of files
Generators
build_from_files
» returns a string containing the source of the selected files and their dependancieswrite_from_files
» writes a file with the selected files and their dependancies
Components
Getters
get_component_file
» gets the file name that contains this component
Converters
components_to_files
» converts a list of components to an ordered files list
Generators
build_from_components
» returns a string containing the source of the selected components and their dependancieswrite_from_components
» writes a file with the selected components and their dependancies
Class usage
Syntax
$pkg = new Packager(`$path_to_manifest`);
Example
$pkg = new Packager("~/Sites/mootools-core/package.yml");
$pkg->write_from_components("~/Sites/mootools.js", array('Type', 'Array'));
Command Line usage
Syntax
./build MANIFEST_PATH [COMPONENTS]
MANIFEST_PATH
is a filepath to the manifest file for a package (required)COMPONENTS
can be one or more components provided by the package (optional)
Example
./build ~/Sites/mootools-core/package.yml Fx Element Array > ~/Sites/mootools.js # partial build
./build ~/Sites/mootools-core/package.yml > ~/Sites/mootools.js # full build