Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clojure/cljs.tools.closure
ClojureScript build of Google Closure
https://github.com/clojure/cljs.tools.closure
Last synced: about 2 months ago
JSON representation
ClojureScript build of Google Closure
- Host: GitHub
- URL: https://github.com/clojure/cljs.tools.closure
- Owner: clojure
- Created: 2023-08-21T14:49:19.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-15T18:08:55.000Z (5 months ago)
- Last Synced: 2024-10-07T11:50:45.020Z (3 months ago)
- Language: Shell
- Size: 7.81 KB
- Stars: 1
- Watchers: 10
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# build.closure
ClojureScript depends on the Google Closure JavaScript Libraries,
but Google does not publish those libraries in a Maven repository.
The github action in this repo generates Maven projects for the
Google Closure Library and, optionally, deploys them.The Google Closure Libraries are divided into two parts: the main
library and third-party extensions. The main library is Apache
licensed; the third-party extensions have a variety of different
licenses. However, code in the main library depends on the
third-party extensions, not the other way around. See CLJS-418 for
details.To manage this, we build two JARs, google-closure-library and
google-closure-library-third-party, with the former declaring an
explicit dependency on the latter. This permits consumers to exclude
the third-party libraries (and their various licenses) if they know
they don't need them.To match this structure, we need to alter the deps.js file that the
Google Closure Compiler uses to resolve dependencies. See CLJS-276
for details.The last release ZIP made by Google was 20130212-95c19e7f0f5f. To
get newer versions, we have to go to the Git repository.