@bleedingdev/modern-js-code-tools 3.2.0-ultramodern.111 → 3.2.0-ultramodern.113
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/dist/cjs/cli/oxlint.cjs
CHANGED
|
@@ -121,7 +121,7 @@ const runOxlintRules = ({ cwd, targets, rules })=>{
|
|
|
121
121
|
stdout: '',
|
|
122
122
|
stderr: ''
|
|
123
123
|
};
|
|
124
|
-
const tempDir = external_node_fs_default().mkdtempSync(external_node_path_default().join(external_node_os_default().tmpdir(), '
|
|
124
|
+
const tempDir = external_node_fs_default().mkdtempSync(external_node_path_default().join(external_node_os_default().tmpdir(), 'modern-code-tools-oxlint-'));
|
|
125
125
|
const configPath = external_node_path_default().join(tempDir, 'oxlint.config.mjs');
|
|
126
126
|
const pluginPath = resolvePluginPath();
|
|
127
127
|
external_node_fs_default().writeFileSync(configPath, `export default {
|
package/dist/esm/cli/oxlint.js
CHANGED
|
@@ -73,7 +73,7 @@ const runOxlintRules = ({ cwd, targets, rules })=>{
|
|
|
73
73
|
stdout: '',
|
|
74
74
|
stderr: ''
|
|
75
75
|
};
|
|
76
|
-
const tempDir = node_fs.mkdtempSync(node_path.join(node_os.tmpdir(), '
|
|
76
|
+
const tempDir = node_fs.mkdtempSync(node_path.join(node_os.tmpdir(), 'modern-code-tools-oxlint-'));
|
|
77
77
|
const configPath = node_path.join(tempDir, 'oxlint.config.mjs');
|
|
78
78
|
const pluginPath = resolvePluginPath();
|
|
79
79
|
node_fs.writeFileSync(configPath, `export default {
|
|
@@ -74,7 +74,7 @@ const runOxlintRules = ({ cwd, targets, rules })=>{
|
|
|
74
74
|
stdout: '',
|
|
75
75
|
stderr: ''
|
|
76
76
|
};
|
|
77
|
-
const tempDir = node_fs.mkdtempSync(node_path.join(node_os.tmpdir(), '
|
|
77
|
+
const tempDir = node_fs.mkdtempSync(node_path.join(node_os.tmpdir(), 'modern-code-tools-oxlint-'));
|
|
78
78
|
const configPath = node_path.join(tempDir, 'oxlint.config.mjs');
|
|
79
79
|
const pluginPath = resolvePluginPath();
|
|
80
80
|
node_fs.writeFileSync(configPath, `export default {
|