Skip to content

Commit 0d50510

Browse files
committed
Consolidate a few files from the rescript-editor-plugin merger
1 parent a3b2c1d commit 0d50510

File tree

9 files changed

+24
-204
lines changed

9 files changed

+24
-204
lines changed

.gitignore

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
.DS_Store
22
out
33
node_modules
4-
client/server
4+
examples/*/lib
5+
analysis/tests/lib
6+
analysis/tests/.merlin
7+
# artifacts from binary compilation
58
*.exe
9+
*.cmi
10+
*.cmt
11+
*.cmti
12+
*.cmx
13+
*.o
14+
*.install

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
1+
## master
2+
3+
Fixes:
4+
- Jump-to-definition on some Windows paths.
5+
- `->` autocomplete overruled `.`.
6+
7+
Features:
8+
- Autocomplete for props in JSX components.
9+
- `->` autocomplete for built-in list, array, string, option types. And for string and array literals.
10+
- Hover on labels in component functions with compiler version 9.1, and labels with type annotation.
11+
- Don't show file path on hover (cleaner).
12+
113
## 1.0.8
14+
215
Fixes:
316
- Diagnostics display for long lines.
417

analysis/.github/workflows/ci.yml

-58
This file was deleted.

analysis/.gitignore

-11
This file was deleted.

analysis/Changes.md

-59
This file was deleted.

analysis/LICENSE

-21
This file was deleted.

analysis/package-lock.json

-33
This file was deleted.

analysis/package.json

-20
This file was deleted.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
]
100100
},
101101
"scripts": {
102-
"clean": "rm -r client/out server/out",
102+
"clean": "rm -rf client/out server/out",
103103
"vscode:prepublish": "npm run clean && npm run compile",
104104
"compile": "tsc -b",
105105
"watch": "tsc -b -w",

0 commit comments

Comments
 (0)