{"id":21602456,"url":"https://github.com/ff6347/extendscript-bundlr","last_synced_at":"2025-04-11T02:33:21.613Z","repository":{"id":41886475,"uuid":"58557777","full_name":"ff6347/extendscript-bundlr","owner":"ff6347","description":"A tool for bundling Adobe ExtendScripts.","archived":false,"fork":false,"pushed_at":"2023-12-03T13:00:45.000Z","size":140,"stargazers_count":18,"open_issues_count":13,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-04T20:46:54.189Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ff6347.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2016-05-11T15:36:35.000Z","updated_at":"2025-02-26T08:22:18.000Z","dependencies_parsed_at":"2023-01-24T04:45:23.027Z","dependency_job_id":"5edc6a67-4493-410f-a588-314ec7da225e","html_url":"https://github.com/ff6347/extendscript-bundlr","commit_stats":null,"previous_names":["fabiantheblind/extendscript-bundlr"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ff6347%2Fextendscript-bundlr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ff6347%2Fextendscript-bundlr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ff6347%2Fextendscript-bundlr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ff6347%2Fextendscript-bundlr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ff6347","download_url":"https://codeload.github.com/ff6347/extendscript-bundlr/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248329804,"owners_count":21085607,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-24T19:13:28.954Z","updated_at":"2025-04-11T02:33:21.594Z","avatar_url":"https://github.com/ff6347.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"extendscript-bundlr\n===================\n\nA tool for bundling Adobe ExtendScripts that use the `//@include 'path/to/file'` or `#include 'path/to/file'` statement. \n\nTested only on OSX 10.11 Windows test are very welcome. \n\n\n### Dependencies\n\n- [Node.js](https://nodejs.org/en/)  \n\n### Limitations\n\nThis tool currently only parses one file. There is no recursive parsing. You could parse the bundled file again though.  \n\n### Install\n\nlocal:  \n\n    npm install extendscript-bundlr --save-dev  \n\nglobal (not recommended):  \n\n    npm install extendscript-bundlr -g\n\n\n\n### Usage\n\n```plain\n  Usage: exsbundlr [options]\n\n  Options:\n\n    -V, --version         output the version number\n    -i --input \u003cinput\u003e    define the source file where the #includes happen\n    -o --ouput \u003couput\u003e    define the target file in which to bundle\n    -r --report           outputs report about the process\n    -m --missing          outputs report only for missing files\n    -p --prefix \u003cprefix\u003e  add a prefix to your script\n    -h, --help            output usage information\n```\n\nlocal:  \n\n    ./node_modules/.bin/exsbundlr --input path/to/input.js --output path/to/output.js\n\nglobal:  \n\n    exsbundlr --input path/to/input.js --output path/to/output.js\n\nor\n\n    exsbundlr -i path/to/input.js -o path/to/output.js\n\n\nYou can omit the target\n\n    exsbundlr -i path/to/input.js\n\nThis will output to a file called \"exsbundlr.default.bundle.jsx\"\n\nIf you want to add a prefix to your script you can use the `--prefix` or `-p` option.\n\n    ./node_modules/.bin/exsbundlr --input path/to/input.js --output path/to/output.js --prefix 'my super dupr prefix'\n\nIf you want to know what is going on use the `-r` or `--report` flag.  \n\n    ./node_modules/.bin/exsbundlr --input path/to/input.js --output path/to/output.js --prefix 'my super dupr prefix' -r  \n\n### Todo\n\n- [x] parse `//@include 'path/to/file'`\n- [x] Also parse `#include 'path/to/file'`\n- [x] Also parse `#includepath`\n- [x] Also parse `@include path/to/file` (without quotes works. grrrr)\n- [x] Also parse `#include path/to/file` (without quotes works. grrrr)\n- [ ] Add watch function\n- [ ] recursive bundling\n\n\n\n## License\n\nCopyright (c) 2016, Fabian \"fabiantheblind\" Morón Zirfas\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fff6347%2Fextendscript-bundlr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fff6347%2Fextendscript-bundlr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fff6347%2Fextendscript-bundlr/lists"}