Skip to content

Commit

Permalink
Adding .DS_Store to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
nshiab committed Nov 15, 2024
1 parent bdd102d commit e989f64
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions setup-sda.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ export default function getTempChange(

writeFileSync(
".gitignore",
".DS_Store\n/dist/\nnode_modules/\nyarn-error.log\n.temp\n.sda-cache\ndata-raw",
".DS_Store\n/dist/\nnode_modules/\nyarn-error.log\n.temp\n.sda-cache\ndata-raw\n.DS_Store",
);
console.log(" => .gitignore has been created.");

Expand Down Expand Up @@ -712,7 +712,9 @@ vite.config.ts.timestamp-*
# SDA
.temp
.sda-cache
data-raw`;
data-raw
.DS_Store`;

const styleCss = `/* Adapted from https://github.com/kevquirk/simple.css */
Expand Down Expand Up @@ -2474,7 +2476,10 @@ Toronto,2010.0,9.9
console.log(" => deno.json has been created.");
}

writeFileSync(".gitignore", "node_modules\n.temp\n.sda-cache\ndata-raw");
writeFileSync(
".gitignore",
"node_modules\n.temp\n.sda-cache\ndata-raw\n.DS_Store",
);
console.log(" => .gitignore has been created.");

mkdirSync("sda");
Expand Down

0 comments on commit e989f64

Please sign in to comment.