Skip to content

Commit

Permalink
use json objects (#93)
Browse files Browse the repository at this point in the history
* use json objects

* update ci/cd scripts

* validate json objects

* git ignore modules dir

* 2.7.3
  • Loading branch information
kbarbounakis authored Aug 14, 2024
1 parent b7fec84 commit fadbc61
Show file tree
Hide file tree
Showing 14 changed files with 1,678 additions and 5,561 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 16
- run: npm ci
- run: npx @themost/peers
- run: npm test
Expand All @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npx @themost/peers
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ build/Release
# Dependency directories
node_modules/
jspm_packages/
modules/

# TypeScript v1 declaration files
typings/
Expand Down
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ node_modules
# build
rollup.config.js
babel.config.js
jsconfig.json

# gitpod
.gitpod.yml
Expand All @@ -24,4 +25,4 @@ spec
.env

# github
.github
.github
10 changes: 10 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@themost/sqlite": [
"src/index"
]
}
}
}
Loading

0 comments on commit fadbc61

Please sign in to comment.