Skip to content

Commit 4750be1

Browse files
docs: update header of README
1 parent 72d464e commit 4750be1

File tree

1 file changed

+28
-2
lines changed

1 file changed

+28
-2
lines changed

docs/misc/delorean.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,35 @@ slug: /api/misc/@coon-js/delorean
33
---
44

55
# 📦 delorean
6-
Tool for transpiling modern ECMAScript to ES5 in Sencha Ext JS CI/CD pipelines .
76

8-
Allows for using modern ECMAScript and converting to ES versions the Closure Compiler bundled with Sencha CMD understands.
7+
ECMAScript transpilation layer for Sencha CMD / Ext JS.
8+
9+
Allows for using modern ECMAScript in your source code. Will transpile to ES versions Sencha CMD and its baked in
10+
Closure Compiler understands.
11+
12+
Makes it possible to use
13+
- the nullish coalescing operator
14+
- the optional chaining operator
15+
- destructuring assignment syntax
16+
17+
without breaking builds created with Sencha CMD:
18+
19+
````javascript
20+
const foo = null ?? "default string";
21+
22+
const fn = ([x, y, z]) => ({x, y, z});
23+
24+
const adventurer = {
25+
name: "Alice",
26+
cat: {
27+
name: "Dinah"
28+
}
29+
};
30+
31+
const dogName = adventurer.dog?.name;
32+
````
33+
34+
935

1036
## Installation
1137

0 commit comments

Comments
 (0)