Last active
March 29, 2016 16:51
-
-
Save wilkerlucio/b7cd926bff3c007a0c39 to your computer and use it in GitHub Desktop.
Figwheel Chrome Content Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defproject chrome-content-script "0.1.0-SNAPSHOT" | |
| :description "FIXME: write description" | |
| :url "http://example.com/FIXME" | |
| :license {:name "Eclipse Public License" | |
| :url "http://www.eclipse.org/legal/epl-v10.html"} | |
| :dependencies [[org.clojure/clojure "1.8.0"] | |
| [org.clojure/clojurescript "1.8.40" :scope "provided"] | |
| [figwheel-sidecar "0.5.2"]] | |
| :source-paths ["src"] | |
| :cljsbuild {:builds [{:id "content-script" | |
| :figwheel true | |
| :source-paths ["src"] | |
| :compiler {:asset-path "js" | |
| :output-to "browsers/chrome/js/content-script.js" | |
| :output-dir "browsers/chrome/js" | |
| :optimizations :none}}]}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment