-
-
Save spieden/1f757b32b4f04d25e7d28e23e0f5c3bf to your computer and use it in GitHub Desktop.
This file contains 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
(require 'boot.core) | |
(boot.core/set-env! | |
:resource-paths #{"resources"} | |
:dependencies '[[cljsjs/boot-cljsjs "0.5.1" :scope "test"]]) | |
(require '[cljsjs.boot-cljsjs.packaging :refer :all] | |
'[boot.core :as boot :refer :all] | |
'[boot.task.built-in :refer :all] | |
'[boot.tmpdir :as tmpd] | |
'[clojure.java.io :as io] | |
'[boot.util :refer [sh info]] | |
'[boot.task-helpers :as helpers]) | |
(def +lib-version+ "0.3.2") | |
(def +version+ (str +lib-version+ "-0")) | |
(def pkg-dir (format "rebass-%s" +lib-version+)) | |
(task-options! | |
pom {:project 'cljsjs/rebass | |
:version +version+ | |
:description "Configurable React Stateless Functional UI Components" | |
:url "http://jxnblk.com/rebass/" | |
:scm {:url "https://github.com/jxnblk/rebass"}}) | |
(deftask build-rebass [] | |
(let [tmp (boot/tmp-dir!)] | |
(with-pre-wrap | |
fileset | |
(doseq [f (->> fileset boot/input-files) | |
:let [target (io/file tmp (tmpd/path f))]] | |
(io/make-parents target) | |
(println target) | |
(io/copy (tmpd/file f) target)) | |
(binding [boot.util/*sh-dir* (str (io/file tmp pkg-dir))] | |
(do ((sh "npm" "install")) | |
((sh "node_modules/.bin/webpack" "-d" "--config" "src/webpack.config.dev.js")) | |
((sh "node_modules/.bin/webpack" "-p" "--config" "src/webpack.config.prod.js")))) | |
(-> fileset (boot/add-resource tmp) boot/commit!)))) | |
(deftask package [] | |
(comp | |
(download :url (str "https://github.com/jxnblk/rebass/archive/v" +lib-version+ ".zip") | |
:checksum "ac458c48bf78fac23f9f03c3f3729349" | |
:unzip true) | |
(build-rebass) | |
(sift :move {#"^rebass[^/]*/src/bundle-dev.js" "cljsjs/rebass/development/rebass.inc.js" | |
#"^rebass[^/]*/src/bundle-dev.map" "cljsjs/rebass/development/rebass.inc.map" | |
#"^rebass[^/]*/src/bundle.js" "cljsjs/rebass/production/rebass.inc.js"}) | |
(sift :include #{#"^cljsjs"}) | |
(deps-cljs :name "cljsjs.rebass" | |
:requires ["cljsjs.react"]))) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment