added local development files to .gitignore and updated package.json to include preview script
This commit is contained in:
parent
7631bab045
commit
ade4e706b4
2 changed files with 6 additions and 1 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1,3 +1,7 @@
|
||||||
.DS_Store
|
.DS_Store
|
||||||
node_modules/*
|
node_modules/*
|
||||||
.env
|
.env
|
||||||
|
# Local development files
|
||||||
|
fetch-now.js
|
||||||
|
now-local.html
|
||||||
|
preview-now.sh
|
||||||
|
|
@ -14,7 +14,8 @@
|
||||||
"author": "melanie kat",
|
"author": "melanie kat",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node index.js",
|
"start": "node index.js",
|
||||||
"test": "biome check"
|
"test": "biome check",
|
||||||
|
"preview": "node fetch-now.js"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@biomejs/biome": "2.3.10",
|
"@biomejs/biome": "2.3.10",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue