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

Commit 8bde524

Browse files
authored
0.6.6 (#80)
* Undo index-advanced change; assume toplevel NS * 0.6.6
1 parent e7ae373 commit 8bde524

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

example/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:plugins [[lein-cljsbuild "1.1.4"]
99
[lein-npm "0.6.0"]
1010
[lein-doo "0.1.7"]
11-
[io.nervous/lein-cljs-lambda "0.6.5"]]
11+
[io.nervous/lein-cljs-lambda "0.6.6"]]
1212
:npm {:dependencies [[source-map-support "0.4.0"]]}
1313
:source-paths ["src"]
1414
:cljs-lambda

plugin/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject io.nervous/lein-cljs-lambda "0.6.5"
1+
(defproject io.nervous/lein-cljs-lambda "0.6.6"
22
:description "Deploying Clojurescript functions to AWS Lambda"
33
:url "https://github.com/nervous-systems/cljs-lambda"
44
:license {:name "Unlicense" :url "http://unlicense.org/UNLICENSE"}

plugin/resources/index-advanced.mustache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ try {
99
process.env.{{key}} = "{{value}}";
1010
{{/#env}}
1111

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

1414
{{#module}}
1515
{{#function}}
16-
exports.{{export}} = __CLJS_LAMBDA_NS_ROOT.{{js-name}};
16+
exports.{{export}} = {{js-name}};
1717
{{/function}}
1818
{{/module}}

templates/cljs-lambda/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject cljs-lambda/lein-template "0.4.9"
1+
(defproject cljs-lambda/lein-template "0.4.10"
22
:description "Clojurescript on AWS Lambda"
33
:url "https://github.com/nervous-systems/cljs-lambda"
44
:license {:name "Unlicense" :url "http://unlicense.org/UNLICENSE"}

templates/cljs-lambda/src/leiningen/new/cljs_lambda/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:plugins [[lein-cljsbuild "1.1.4"]
99
[lein-npm "0.6.0"]
1010
[lein-doo "0.1.7"]
11-
[io.nervous/lein-cljs-lambda "0.6.5"]]
11+
[io.nervous/lein-cljs-lambda "0.6.6"]]
1212
:npm {:dependencies [[source-map-support "0.4.0"]]}
1313
:source-paths ["src"]
1414
:cljs-lambda

templates/serverless/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject serverless-cljs/lein-template "0.1.3"
1+
(defproject serverless-cljs/lein-template "0.1.4"
22
:description "Clojurescript on AWS Lambda via Serverless"
33
:url "https://github.com/nervous-systems/cljs-lambda"
44
:license {:name "Unlicense" :url "http://unlicense.org/UNLICENSE"}

templates/serverless/src/leiningen/new/serverless_cljs/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[org.clojure/clojurescript "1.8.51"]
44
[io.nervous/cljs-lambda "0.3.5"]]
55
:plugins [[lein-npm "0.6.2"]
6-
[io.nervous/lein-cljs-lambda "0.6.5"]]
6+
[io.nervous/lein-cljs-lambda "0.6.6"]]
77
:npm {:dependencies [[serverless-cljs-plugin "0.1.2"]]}
88
:cljs-lambda {:compiler
99
{:inputs ["src"]

0 commit comments

Comments
 (0)