From 7caa057aba4a6782df663b1bbb4333cf50c79de0 Mon Sep 17 00:00:00 2001 From: Edli Merkaj Date: Thu, 28 Jan 2021 12:06:26 +0100 Subject: [PATCH 1/3] chore: add the ReactiveConf 2018 video --- index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.js b/index.js index a216c347..1e8c07b6 100644 --- a/index.js +++ b/index.js @@ -43,6 +43,9 @@ //. //. Sanctuary is designed to work in Node.js and in ES5-compatible browsers. //. +//. Please refer to this video: [Sanctuary, Programming Safely in an Uncertain World](https://www.youtube.com/watch?v=a2astdDbOjk) +//. for a brief introduction of Sanctuary's functionality. +//. //. ## Folktale //. //. [Folktale][], like Sanctuary, is a standard library for functional From 67c748142ca5d856a39ee2710d545c0be5aaedb3 Mon Sep 17 00:00:00 2001 From: Edli Merkaj Date: Thu, 28 Jan 2021 12:10:13 +0100 Subject: [PATCH 2/3] chore: add information regarding rollup and sanctuary --- index.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 1e8c07b6..6c3dd5ea 100644 --- a/index.js +++ b/index.js @@ -43,8 +43,6 @@ //. //. Sanctuary is designed to work in Node.js and in ES5-compatible browsers. //. -//. Please refer to this video: [Sanctuary, Programming Safely in an Uncertain World](https://www.youtube.com/watch?v=a2astdDbOjk) -//. for a brief introduction of Sanctuary's functionality. //. //. ## Folktale //. @@ -337,6 +335,10 @@ //. const $ = window.sanctuaryDef; //. // ... //. ``` +//. If you are using rollup in your project, where you have integrated Sanctuary, you might +//. get errors. Please import builtins and globals from rollup-plugin-node-builtins and +//. rollup-plugin-node-globals respectively, in the rollup config file. These are needed to add +//. the utils folder, which is referenced in the sanctuary code. //. //. ## API From 6a26599a2befdffce11a420935c8d8d6bcbb0562 Mon Sep 17 00:00:00 2001 From: Edli Merkaj Date: Thu, 28 Jan 2021 12:13:26 +0100 Subject: [PATCH 3/3] chore: add information regarding rollup and sanctuary --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index 6c3dd5ea..a58cab9b 100644 --- a/index.js +++ b/index.js @@ -43,7 +43,6 @@ //. //. Sanctuary is designed to work in Node.js and in ES5-compatible browsers. //. -//. //. ## Folktale //. //. [Folktale][], like Sanctuary, is a standard library for functional