Skip to content

Commit afebe3f

Browse files
authored
Merge pull request #252 from cviejo/master
fixes repl loading ramda-fantasy types
2 parents 0fb37df + 661b24e commit afebe3f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

repl/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@
121121
exposeAs : 'S'
122122
},
123123
{
124-
src : '//cdn.jsdelivr.net/npm/ramda-fantasy@0.8.0/dist/ramda-fantasy.min.js',
125-
global : 'ramdaFantasy',
124+
src : '//cdn.jsdelivr.net/npm/ramda-fantasy@latest/dist/ramda-fantasy.min.js',
125+
global : 'RF',
126126
expose : [
127127
'Either',
128128
'Future',

repl/index.html.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
},
123123
{
124124
src : '//cdn.jsdelivr.net/npm/[email protected]/dist/ramda-fantasy.min.js',
125-
global : 'ramdaFantasy',
125+
global : 'RF',
126126
expose : [
127127
'Either',
128128
'Future',

repl/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ document.addEventListener('DOMContentLoaded', function () {
5252
{
5353
exposeAs: 'S',
5454
global: 'sanctuary',
55-
src: '//wzrd.in/standalone/sanctuary@latest'
55+
src: '//cdn.jsdelivr.net/gh/sanctuary-js/sanctuary@latest/dist/bundle.js'
5656
},
5757
{
5858
expose: [
@@ -66,8 +66,8 @@ document.addEventListener('DOMContentLoaded', function () {
6666
'Reader',
6767
'Tuple'
6868
],
69-
global: 'ramdaFantasy',
70-
src: '//wzrd.in/standalone/ramda-fantasy@latest'
69+
global: 'RF',
70+
src: '//cdn.jsdelivr.net/npm/ramda-fantasy@latest/dist/ramda-fantasy.min.js'
7171
}
7272
]
7373
})

0 commit comments

Comments
 (0)