Skip to content

Instantly share code, notes, and snippets.

@wilkerlucio
Last active March 29, 2016 16:51
Show Gist options
  • Select an option

  • Save wilkerlucio/b7cd926bff3c007a0c39 to your computer and use it in GitHub Desktop.

Select an option

Save wilkerlucio/b7cd926bff3c007a0c39 to your computer and use it in GitHub Desktop.
Figwheel Chrome Content Script
(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