create-webiny-project 6.0.0-rc.2 → 6.0.0-rc.4
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.
|
@@ -1,8 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
printWidth: 100,
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
export default {
|
|
2
|
+
printWidth: 100, // default: 80
|
|
3
|
+
trailingComma: "none", // "none" | "all" | "es5"
|
|
4
|
+
tabWidth: 2, // default: 2
|
|
5
|
+
arrowParens: "avoid", // "always" | "avoid"
|
|
6
|
+
endOfLine: "lf", // "lf" | "crlf" | "cr" | "auto"
|
|
7
|
+
useTabs: false, // use tabs instead of spaces
|
|
8
|
+
semi: true, // print semicolons; false to omit
|
|
9
|
+
singleQuote: false, // use single quotes instead of double
|
|
10
|
+
jsxSingleQuote: false, // use single quotes in JSX
|
|
11
|
+
bracketSpacing: true, // spaces in object literals: { foo: bar }
|
|
12
|
+
bracketSameLine: false, // put > of multiline JSX on last line (was jsxBracketSameLine)
|
|
13
|
+
proseWrap: "preserve", // "always" | "never" | "preserve" — wrap markdown prose
|
|
14
|
+
htmlWhitespaceSensitivity: "css", // "css" | "strict" | "ignore"
|
|
15
|
+
vueIndentScriptAndStyle: false, // indent <script> and <style> in Vue files
|
|
16
|
+
singleAttributePerLine: false, // enforce one JSX/HTML attribute per line
|
|
17
|
+
embeddedLanguageFormatting: "auto", // "auto" | "off" — format embedded code (e.g. CSS-in-JS)
|
|
18
|
+
quoteProps: "as-needed", // "as-needed" | "consistent" | "preserve" — object key quoting
|
|
19
|
+
experimentalTernaries: false, // use "curious ternary" style (Prettier 3+)
|
|
20
|
+
requirePragma: false, // only format files with @format pragma
|
|
21
|
+
insertPragma: false, // insert @format pragma at top of formatted files
|
|
22
|
+
rangeStart: 0, // format only a segment of the file (start offset)
|
|
23
|
+
rangeEnd: Infinity, // format only a segment of the file (end offset)
|
|
24
|
+
plugins: [], // list of plugin paths/modules
|
|
6
25
|
overrides: [
|
|
7
26
|
{
|
|
8
27
|
files: ["*.js", "*.ts", "*.tsx"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-webiny-project",
|
|
3
|
-
"version": "6.0.0-rc.
|
|
3
|
+
"version": "6.0.0-rc.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Webiny project bootstrap tool.",
|
|
6
6
|
"main": "index.js",
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"author": "Webiny Ltd.",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@webiny/build-tools": "6.0.0-rc.
|
|
15
|
-
"@webiny/system-requirements": "6.0.0-rc.
|
|
16
|
-
"@webiny/telemetry": "6.0.0-rc.
|
|
14
|
+
"@webiny/build-tools": "6.0.0-rc.4",
|
|
15
|
+
"@webiny/system-requirements": "6.0.0-rc.4",
|
|
16
|
+
"@webiny/telemetry": "6.0.0-rc.4",
|
|
17
17
|
"chalk": "4.1.2",
|
|
18
18
|
"execa": "5.1.1",
|
|
19
19
|
"find-up": "5.0.0",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"access": "public",
|
|
41
41
|
"directory": "dist"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "e2758ee1cfa3b9a7152e9bb995a90ccabd33266f",
|
|
44
44
|
"adio": {
|
|
45
45
|
"ignoreDirs": [
|
|
46
46
|
"_templates"
|