Skip to content
This repository has been archived by the owner on Oct 22, 2022. It is now read-only.

Commit

Permalink
0.6.6 (#80)
Browse files Browse the repository at this point in the history
* Undo index-advanced change; assume toplevel NS

* 0.6.6
  • Loading branch information
moea committed May 12, 2017
1 parent e7ae373 commit 8bde524
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion example/project.clj
Expand Up @@ -8,7 +8,7 @@
:plugins [[lein-cljsbuild "1.1.4"]
[lein-npm "0.6.0"]
[lein-doo "0.1.7"]
[io.nervous/lein-cljs-lambda "0.6.5"]]
[io.nervous/lein-cljs-lambda "0.6.6"]]
:npm {:dependencies [[source-map-support "0.4.0"]]}
:source-paths ["src"]
:cljs-lambda
Expand Down
2 changes: 1 addition & 1 deletion plugin/project.clj
@@ -1,4 +1,4 @@
(defproject io.nervous/lein-cljs-lambda "0.6.5"
(defproject io.nervous/lein-cljs-lambda "0.6.6"
:description "Deploying Clojurescript functions to AWS Lambda"
:url "https://github.com/nervous-systems/cljs-lambda"
:license {:name "Unlicense" :url "http://unlicense.org/UNLICENSE"}
Expand Down
4 changes: 2 additions & 2 deletions plugin/resources/index-advanced.mustache
Expand Up @@ -9,10 +9,10 @@ try {
process.env.{{key}} = "{{value}}";
{{/#env}}

var __CLJS_LAMBDA_NS_ROOT = require("./{{output-to}}");
require("./{{output-to}}");

{{#module}}
{{#function}}
exports.{{export}} = __CLJS_LAMBDA_NS_ROOT.{{js-name}};
exports.{{export}} = {{js-name}};
{{/function}}
{{/module}}
2 changes: 1 addition & 1 deletion templates/cljs-lambda/project.clj
@@ -1,4 +1,4 @@
(defproject cljs-lambda/lein-template "0.4.9"
(defproject cljs-lambda/lein-template "0.4.10"
:description "Clojurescript on AWS Lambda"
:url "https://github.com/nervous-systems/cljs-lambda"
:license {:name "Unlicense" :url "http://unlicense.org/UNLICENSE"}
Expand Down
Expand Up @@ -8,7 +8,7 @@
:plugins [[lein-cljsbuild "1.1.4"]
[lein-npm "0.6.0"]
[lein-doo "0.1.7"]
[io.nervous/lein-cljs-lambda "0.6.5"]]
[io.nervous/lein-cljs-lambda "0.6.6"]]
:npm {:dependencies [[source-map-support "0.4.0"]]}
:source-paths ["src"]
:cljs-lambda
Expand Down
2 changes: 1 addition & 1 deletion templates/serverless/project.clj
@@ -1,4 +1,4 @@
(defproject serverless-cljs/lein-template "0.1.3"
(defproject serverless-cljs/lein-template "0.1.4"
:description "Clojurescript on AWS Lambda via Serverless"
:url "https://github.com/nervous-systems/cljs-lambda"
:license {:name "Unlicense" :url "http://unlicense.org/UNLICENSE"}
Expand Down
Expand Up @@ -3,7 +3,7 @@
[org.clojure/clojurescript "1.8.51"]
[io.nervous/cljs-lambda "0.3.5"]]
:plugins [[lein-npm "0.6.2"]
[io.nervous/lein-cljs-lambda "0.6.5"]]
[io.nervous/lein-cljs-lambda "0.6.6"]]
:npm {:dependencies [[serverless-cljs-plugin "0.1.2"]]}
:cljs-lambda {:compiler
{:inputs ["src"]
Expand Down

0 comments on commit 8bde524

Please sign in to comment.