chore: adjust eslintignore and prettierignore
This commit is contained in:
parent
7172736ab7
commit
6302b7ea70
3 changed files with 5 additions and 3 deletions
|
@ -1,3 +1,4 @@
|
|||
/dist
|
||||
/.pnp.js
|
||||
/.pnp.cjs
|
||||
/.pnp.loader.mjs
|
||||
/.yarn/
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
/dist
|
||||
/package-lock.json
|
||||
/.pnp.js
|
||||
/.pnp.cjs
|
||||
/.pnp.loader.mjs
|
||||
/.yarn/
|
||||
/.vscode/
|
||||
|
|
|
@ -33,7 +33,7 @@ async function linkPackage(clean) {
|
|||
throw new Error("Could not find system.json");
|
||||
}
|
||||
|
||||
const linkDirectory = path.resolve(getDataPath(), destinationDirectory, name);
|
||||
const linkDirectory = path.resolve(getDataPath(), "Data", destinationDirectory, name);
|
||||
|
||||
if (clean) {
|
||||
console.log(`Removing link to built package at ${linkDirectory}.`);
|
||||
|
|
Loading…
Reference in a new issue