@timeax/scaffold 0.0.5 → 0.0.7
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/.idea/dictionaries/project.xml +8 -0
- package/.idea/modules.xml +8 -0
- package/.idea/php.xml +34 -0
- package/.idea/scaffold.iml +8 -0
- package/.idea/vcs.xml +6 -0
- package/dist/ast.d.cts +4 -2
- package/dist/ast.d.ts +4 -2
- package/dist/cli.cjs +1672 -0
- package/dist/cli.cjs.map +1 -0
- package/dist/cli.mjs +1661 -0
- package/dist/cli.mjs.map +1 -0
- package/dist/config-C0067l3c.d.cts +383 -0
- package/dist/config-C0067l3c.d.ts +383 -0
- package/dist/index.cjs +1311 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +8 -347
- package/dist/index.d.ts +8 -347
- package/dist/index.mjs +1295 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +2 -2
- package/src/cli/main.ts +4 -1
- package/tsup.config.ts +24 -60
package/.idea/php.xml
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="MessDetectorOptionsConfiguration">
|
|
4
|
+
<option name="transferred" value="true" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="PHPCSFixerOptionsConfiguration">
|
|
7
|
+
<option name="transferred" value="true" />
|
|
8
|
+
</component>
|
|
9
|
+
<component name="PHPCodeSnifferOptionsConfiguration">
|
|
10
|
+
<option name="highlightLevel" value="WARNING" />
|
|
11
|
+
<option name="transferred" value="true" />
|
|
12
|
+
</component>
|
|
13
|
+
<component name="PhpCodeSniffer">
|
|
14
|
+
<phpcs_settings>
|
|
15
|
+
<phpcs_by_interpreter asDefaultInterpreter="true" interpreter_id="8e23fb51-6054-493e-9d06-8dbf88fe3895" timeout="30000" />
|
|
16
|
+
</phpcs_settings>
|
|
17
|
+
</component>
|
|
18
|
+
<component name="PhpStan">
|
|
19
|
+
<PhpStan_settings>
|
|
20
|
+
<phpstan_by_interpreter asDefaultInterpreter="true" interpreter_id="8e23fb51-6054-493e-9d06-8dbf88fe3895" timeout="60000" />
|
|
21
|
+
</PhpStan_settings>
|
|
22
|
+
</component>
|
|
23
|
+
<component name="PhpStanOptionsConfiguration">
|
|
24
|
+
<option name="transferred" value="true" />
|
|
25
|
+
</component>
|
|
26
|
+
<component name="Psalm">
|
|
27
|
+
<Psalm_settings>
|
|
28
|
+
<psalm_fixer_by_interpreter asDefaultInterpreter="true" interpreter_id="8e23fb51-6054-493e-9d06-8dbf88fe3895" timeout="60000" />
|
|
29
|
+
</Psalm_settings>
|
|
30
|
+
</component>
|
|
31
|
+
<component name="PsalmOptionsConfiguration">
|
|
32
|
+
<option name="transferred" value="true" />
|
|
33
|
+
</component>
|
|
34
|
+
</project>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="WEB_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$" />
|
|
5
|
+
<orderEntry type="inheritedJdk" />
|
|
6
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
+
</component>
|
|
8
|
+
</module>
|
package/.idea/vcs.xml
ADDED
package/dist/ast.d.cts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { l as FormatConfig } from './config-C0067l3c.cjs';
|
|
2
|
+
|
|
1
3
|
type AstMode = 'strict' | 'loose';
|
|
2
4
|
type DiagnosticSeverity = 'info' | 'warning' | 'error';
|
|
3
5
|
interface Diagnostic {
|
|
@@ -98,7 +100,7 @@ declare function extractInlineCommentParts(content: string): {
|
|
|
98
100
|
inlineComment: string | null;
|
|
99
101
|
};
|
|
100
102
|
|
|
101
|
-
interface FormatOptions {
|
|
103
|
+
interface FormatOptions extends FormatConfig {
|
|
102
104
|
/**
|
|
103
105
|
* Spaces per indent level for re-printing entries.
|
|
104
106
|
* Defaults to 2.
|
|
@@ -111,7 +113,7 @@ interface FormatOptions {
|
|
|
111
113
|
*/
|
|
112
114
|
mode?: AstMode;
|
|
113
115
|
/**
|
|
114
|
-
* Normalize newlines to the dominant style in the original text (LF vs CRLF).
|
|
116
|
+
* Normalize newlines to the dominant style in the original text (LF vs. CRLF).
|
|
115
117
|
* Defaults to true.
|
|
116
118
|
*/
|
|
117
119
|
normalizeNewlines?: boolean;
|
package/dist/ast.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { l as FormatConfig } from './config-C0067l3c.js';
|
|
2
|
+
|
|
1
3
|
type AstMode = 'strict' | 'loose';
|
|
2
4
|
type DiagnosticSeverity = 'info' | 'warning' | 'error';
|
|
3
5
|
interface Diagnostic {
|
|
@@ -98,7 +100,7 @@ declare function extractInlineCommentParts(content: string): {
|
|
|
98
100
|
inlineComment: string | null;
|
|
99
101
|
};
|
|
100
102
|
|
|
101
|
-
interface FormatOptions {
|
|
103
|
+
interface FormatOptions extends FormatConfig {
|
|
102
104
|
/**
|
|
103
105
|
* Spaces per indent level for re-printing entries.
|
|
104
106
|
* Defaults to 2.
|
|
@@ -111,7 +113,7 @@ interface FormatOptions {
|
|
|
111
113
|
*/
|
|
112
114
|
mode?: AstMode;
|
|
113
115
|
/**
|
|
114
|
-
* Normalize newlines to the dominant style in the original text (LF vs CRLF).
|
|
116
|
+
* Normalize newlines to the dominant style in the original text (LF vs. CRLF).
|
|
115
117
|
* Defaults to true.
|
|
116
118
|
*/
|
|
117
119
|
normalizeNewlines?: boolean;
|