create-mendix-widget-gleam 2.0.11 → 2.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mendix-widget-gleam",
3
- "version": "2.0.11",
3
+ "version": "2.0.12",
4
4
  "description": "Scaffold a Mendix Pluggable Widget powered by Gleam",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -0,0 +1,10 @@
1
+ export default args => {
2
+ const configs = args.configDefaultConfig;
3
+ return configs.map(config => ({
4
+ ...config,
5
+ onwarn(warning, warn) {
6
+ if (warning.code === "CIRCULAR_DEPENDENCY") return;
7
+ config.onwarn(warning, warn);
8
+ }
9
+ }));
10
+ };
@@ -1,21 +0,0 @@
1
- # Set the default behavior, in case people don't have core.autocrlf set.
2
- * text=auto
3
-
4
- # Explicitly declare text files you want to always be normalized and converted
5
- # to native line endings on checkout.
6
- *.ts text eol=lf
7
- *.tsx text eol=lf
8
- *.js text eol=lf
9
- *.jsx text eol=lf
10
- *.css text eol=lf
11
- *.scss text eol=lf
12
- *.json text eol=lf
13
- *.xml text eol=lf
14
- *.md text eol=lf
15
- *.gitattributes eol=lf
16
- *.gitignore eol=lf
17
-
18
- # Denote all files that are truly binary and should not be modified.
19
- *.png binary
20
- *.jpg binary
21
- *.gif binary