Skip to content

Commit 51e8195

Browse files
committed
add public cljs.compiler.api namespace
1 parent 4c50d43 commit 51e8195

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/clj/cljs/compiler/api.clj

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
; Copyright (c) Rich Hickey. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software
8+
9+
(ns cljs.compiler.api
10+
"This is intended to be a stable api for those who intend to create
11+
tools that use compiler data.
12+
13+
For example: a build script may need to how to invalidate compiled
14+
files so that they will be recompiled."
15+
(:require [cljs.util :as util]
16+
[cljs.env :as env]
17+
[cljs.analyzer :as ana]
18+
[cljs.compiler :as comp]))

0 commit comments

Comments
 (0)