Skip to content

Commit

Permalink
chore: release 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MR-Addict committed Feb 21, 2024
1 parent e756097 commit 44621cc
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 12 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ jobs:

- name: Build REPL
run: |
cd frontend
npm install
BASE_URL=./ npm run build
cd frontend && npm install && npm run build
- name: Build book
run: |
Expand Down
2 changes: 1 addition & 1 deletion backend/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mdbook-repl"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
license = "MIT"
readme = "../README.md"
Expand Down
10 changes: 5 additions & 5 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mdbook-repl",
"private": true,
"version": "0.2.1",
"version": "0.2.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";

export default defineConfig({
base: process.env.BASE_URL || "/",
base: process.env.BASE_URL || "./",
plugins: [million.vite({ auto: true }), react()],
resolve: { alias: [{ find: "@", replacement: path.resolve(__dirname, "src") }] }
});

0 comments on commit 44621cc

Please sign in to comment.