Skip to content

Commit 741f479

Browse files
committed
add package json
1 parent 7baec55 commit 741f479

File tree

6 files changed

+228
-21
lines changed

6 files changed

+228
-21
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- uses: actions/checkout@v4
28-
- run: npx @biomejs/biome check .
28+
- run: npm ci
29+
- run: npm test
2930
- name: Set up cargo cache
3031
uses: Swatinem/rust-cache@378c8285a4eaf12899d11bea686a763e906956af
3132
- run: cargo fmt --all -- --check

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ examples/inrap_badass/
77
sqlpage/https/*
88
x.sql
99
**/sqlpage.bin
10+
node_modules/

biome.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
33
"files": {
4-
"ignore": ["examples/official-site/pgconf/**"],
4+
"ignore": [
5+
"examples/official-site/pgconf/**",
6+
"tests/end-to-end/test-results/**"
7+
],
58
"ignoreUnknown": true
69
},
710
"formatter": {

package-lock.json

Lines changed: 180 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "sqlpage",
3+
"version": "1.0.0",
4+
"scripts": {
5+
"test": "biome check .",
6+
"format": "biome format --write ."
7+
},
8+
"repository": {
9+
"type": "git",
10+
"url": "git+https://github.com/sqlpage/SQLPage.git"
11+
},
12+
"license": "MIT",
13+
"devDependencies": {
14+
"@biomejs/biome": "^1.9.4"
15+
}
16+
}

tests/end-to-end/package-lock.json

Lines changed: 25 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)