Skip to content

Commit

Permalink
returning package-lock.json to repo
Browse files Browse the repository at this point in the history
  • Loading branch information
rizen committed Apr 26, 2024
1 parent 438cd6b commit aef6f37
Show file tree
Hide file tree
Showing 6 changed files with 37,884 additions and 1,529 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ jobs:
# Build job
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./docs/
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -42,19 +39,18 @@ jobs:
with:
node-version: 20
cache: npm # or pnpm / yarn
cache-dependency-path: 'package-lock.json'
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Install dependencies
run: npm ci # or pnpm install / yarn install / bun install
- name: Build with VitePress
run: |
npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
touch .vitepress/dist/.nojekyll
touch docs/.vitepress/dist/.nojekyll
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: .vitepress/dist
path: docs/.vitepress/dist

# Deployment job
deploy:
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ dist
*.zip
ving/drizzle/migrations
docs/.vitepress/cache
docs/.vitepress/dist
/package-lock.json
docs/.vitepress/dist
1 change: 0 additions & 1 deletion docs/change-log.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ outline: deep
* Built ving schema validation system.
* Fixed a bunch of bugs in the ving schema documentation.
* Moved extensionMap from ving/record/records/S3File.mjs to ving/schema/schemas/S3File.mjs.
* Removed package-lock.json from git repo as it causes upstream conflicts like crazy.
* Upgraded from mysql2 3.3.4 to 3.9.7.
* NOTE: run "npm i"

Expand Down
Loading

0 comments on commit aef6f37

Please sign in to comment.