Skip to content

Commit 9858ac6

Browse files
Moved to custom FunScript build
1 parent dc6545f commit 9858ac6

File tree

7 files changed

+4
-6
lines changed

7 files changed

+4
-6
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ node_modules
2727
# Users Environment Variables
2828
.lock-wscript
2929
*.suo
30+
Test/
3031
Test/obj/
3132
Test/bin/
3233
.paket/paket.exe
3334
packages
3435
paket.lock
36+
Test/Script.fsx

Test/Script.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ let t = match foobar with
1212
| 1 -> 0
1313

1414
let t = System.IO.Directory
15-
let a = System.IO.Di
15+
let a = System.IO.D

lib/FunScript.Interop.dll

8.5 KB
Binary file not shown.

lib/FunScript.dll

1.52 MB
Binary file not shown.

paket.dependencies

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
source https://nuget.org/api/v2
22

3-
nuget FunScript
4-
nuget FunScript.TypeScript.Binding.lib
53
nuget FAKE

src/autocomplete-fs/lib/autocomplete-fs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ AutocompleteService__ask$ = (function(msg,no,cb,state)
124124
null;
125125
var a = s.contents;
126126
var len = (Array__BoxedLength$(String__SplitWithoutOptions$(a, ["\n"])) - 1);
127-
if (((len == no) || false))
127+
if (((len == no) || (a.indexOf("\"Kind\":\"ERROR\"") >= 0)))
128128
{
129129
((window.console).log(("RECIVED: " + a)));
130130
var ignored0 = ((c.stdout).removeAllListeners("data"));

src/funscript-atom.fsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
// --------------------------------------------------------------------------------------
44

55
#I "../lib"
6-
#I "../packages/FunScript/lib/net40"
7-
#I "../packages/FunScript.TypeScript.Binding.lib/lib/net40"
86

97
#r "FunScript.dll"
108
#r "FunScript.Interop.dll"

0 commit comments

Comments
 (0)