Skip to content

Commit

Permalink
Make BASE_PATH sticky
Browse files Browse the repository at this point in the history
  • Loading branch information
sverhoeven committed Oct 29, 2024
1 parent 60bcb35 commit fac6496
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions apps/class-solid/app.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { defineConfig } from "@solidjs/start/config";

console.log("process.env.BASE_PATH", process.env.BASE_PATH);

This comment has been minimized.

Copy link
@Peter9192

Peter9192 Oct 29, 2024

Member

Too hasty, this is now in main


export default defineConfig({
ssr: false,
server: {
Expand Down
2 changes: 1 addition & 1 deletion apps/class-solid/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "class-solid",
"private": true,
"version": "0.0.9",
"version": "0.0.10",
"type": "module",
"scripts": {
"dev": "vinxi dev",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"version": "0.0.9",
"version": "0.0.10",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/class/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@classmodel/class",
"description": "Chemistry Land-surface Atmosphere Soil Slab (CLASS) model",
"type": "module",
"version": "0.0.9",
"version": "0.0.10",
"exports": {
"./package.json": "./package.json",
"./class": {
Expand Down
3 changes: 2 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["dist/**"]
"outputs": ["dist/**"],
"env": ["BASE_PATH"]
},
"dev": {
"cache": false,
Expand Down

0 comments on commit fac6496

Please sign in to comment.