Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions .github/workflows/couchdb.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
name: CouchDB Tests
on: [push]
name: CouchDB Tests (Optional)
on:
push:
branches-ignore:
- main
paths:
- 'packages/react-couchdb-authentication/**'
pull_request:
branches:
- main
paths:
- 'packages/react-couchdb-authentication/**'

jobs:
test:
Expand All @@ -20,9 +30,9 @@ jobs:
${{ runner.OS }}-

- name: Set up CouchDB
uses: "cobot/couchdb-action@master"
uses: "cobot/couchdb-action@main"
with:
couchdb version: "2.3.1"
couchdb-version: "3.5.0"

- name: Check CouchDB
run: |
Expand Down
21 changes: 21 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,23 @@
//registry.npmjs.org/:_authToken=${NPM_TOKEN}

# Use exact version matching for packages when installing
# This helps prevent lock file conflicts
exact=false

# Enable audit levels for security
audit-level=moderate

# Automatically fix audit issues when possible
audit-fix=true

# Save packages to package.json with ^ prefix (default)
save-prefix=^

# Prefer offline packages when available
prefer-offline=true

# Progress bar
progress=true

# Fund message
fund=false
4 changes: 2 additions & 2 deletions apps/react-pouchdb-example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stanlemon/react-pouchdb-example",
"version": "0.3.28",
"version": "0.3.29",
"description": "A react app using pouchdb built in typescript",
"author": "Stan Lemon <stanlemon@users.noreply.github.com",
"license": "MIT",
Expand All @@ -24,7 +24,7 @@
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@fortawesome/react-fontawesome": "^0.2.3",
"@stanlemon/react-couchdb-authentication": "*",
"@stanlemon/react-pouchdb": "*",
"@stanlemon/webdev": "*",
Expand Down
6 changes: 3 additions & 3 deletions apps/template/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stanlemon/app-template",
"version": "0.4.8",
"version": "0.4.9",
"description": "A template for creating apps using the webdev package.",
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
"license": "MIT",
Expand Down Expand Up @@ -37,8 +37,8 @@
"@types/jest": "^29.5.14",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"concurrently": "^9.1.2",
"concurrently": "^9.2.0",
"nodemon": "^3.1.10",
"supertest": "^7.1.1"
"supertest": "^7.1.4"
}
}
Loading