Skip to content

Commit e987a60

Browse files
committed
Removed unnecessary files
1 parent d2a7bcc commit e987a60

File tree

4 files changed

+2
-3
lines changed

4 files changed

+2
-3
lines changed

.github/workflows/sonarcloud.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,3 @@ jobs:
3030
env:
3131
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
3232
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
33-
SONAR_SCANNER_OPTS: "-Dsonar.javascript.node.maxspace=8192 -Xmx512m"
Binary file not shown.

docs/business-logic-in-apps/write-javascript/transformers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Compared with inline code in `{{ }}`, transformer supports multi-line code block
66

77
## Quickstart
88

9-
Click **+ New > Transformer** in a query editor to create a transformer.
9+
Click **+ New > Transfromer** in a query editor to create a transformer.
1010

1111
Then write your JS code in the transformer. You can click **Preview** to get the return value and access it by `transformerName.value` in your app.
1212

docs/lowcoder-extension/use-third-party-libraries-in-apps/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Lowcoder provides some JavaScript built-in libraries for use.
1616
Built-in Libraries can be used directly everywhere where you can use JavaScript.
1717

1818
```
19-
// lodash
19+
// loadash
2020
return _.chunk(['a', 'b', 'c', 'd'], 2);
2121
// => [['a', 'b'], ['c', 'd']]
2222

0 commit comments

Comments
 (0)