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
6 changes: 4 additions & 2 deletions templates/angular-example/juno.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>",
},
source: "dist/angular-example/browser",
predeploy: ["npm run build"],
hosting: {
source: "dist/angular-example/browser",
predeploy: ["npm run build"],
}
},
});
4 changes: 2 additions & 2 deletions templates/angular-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"@angular/platform-browser": "^21.0.0",
"@angular/platform-browser-dynamic": "^21.0.0",
"@angular/router": "^21.0.0",
"@junobuild/core": "^5.3.1",
"@junobuild/functions": "^0.8.2",
"@junobuild/core": "^5.4.0",
"@junobuild/functions": "^0.8.3",
"nanoid": "^5.1.5",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
Expand Down
6 changes: 4 additions & 2 deletions templates/angular-starter/juno.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>",
},
source: "dist/angular-example/browser",
predeploy: ["npm run build"],
hosting: {
source: "dist/angular-example/browser",
predeploy: ["npm run build"],
}
},
});
4 changes: 2 additions & 2 deletions templates/angular-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"@angular/platform-browser": "^21.0.0",
"@angular/platform-browser-dynamic": "^21.0.0",
"@angular/router": "^21.0.0",
"@junobuild/core": "^5.3.1",
"@junobuild/functions": "^0.8.2",
"@junobuild/core": "^5.4.0",
"@junobuild/functions": "^0.8.3",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"zone.js": "^0.15.1"
Expand Down
6 changes: 4 additions & 2 deletions templates/astro-starter/juno.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>",
},
source: "dist",
predeploy: ["npm run build"],
hosting: {
source: "dist",
predeploy: ["npm run build"],
}
},
});
2 changes: 1 addition & 1 deletion templates/astro-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@astrojs/mdx": "^4.3.12",
"@astrojs/rss": "^4.0.14",
"@astrojs/sitemap": "^3.6.0",
"@junobuild/config": "^2.15.1",
"@junobuild/config": "^3.0.0",
"@junobuild/vite-plugin": "^4.7.1",
"@tailwindcss/vite": "^4.1.17",
"astro": "^5.16.0",
Expand Down
6 changes: 4 additions & 2 deletions templates/nextjs-example/juno.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>",
},
source: "out",
predeploy: ["npm run build"],
hosting: {
source: "out",
predeploy: ["npm run build"],
}
},
});
6 changes: 3 additions & 3 deletions templates/nextjs-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
"postinstall": "npm run postinstall:copy-auth"
},
"dependencies": {
"@junobuild/core": "^5.3.1",
"@junobuild/functions": "^0.8.2",
"@junobuild/core": "^5.4.0",
"@junobuild/functions": "^0.8.3",
"nanoid": "^5.1.5",
"next": "16.0.7",
"react": "19.2.1",
"react-dom": "19.2.1"
},
"devDependencies": {
"@junobuild/config": "^2.15.1",
"@junobuild/config": "^3.0.0",
"@junobuild/nextjs-plugin": "^4.7.1",
"@next/eslint-plugin-next": "16.0.0",
"@tailwindcss/postcss": "^4.1.13",
Expand Down
6 changes: 4 additions & 2 deletions templates/nextjs-starter/juno.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>",
},
source: "out",
predeploy: ["npm run build"],
hosting: {
source: "out",
predeploy: ["npm run build"],
}
},
});
6 changes: 3 additions & 3 deletions templates/nextjs-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
"postinstall": "npm run postinstall:copy-auth"
},
"dependencies": {
"@junobuild/core": "^5.3.1",
"@junobuild/functions": "^0.8.2",
"@junobuild/core": "^5.4.0",
"@junobuild/functions": "^0.8.3",
"next": "16.0.7",
"react": "19.2.1",
"react-dom": "19.2.1"
},
"devDependencies": {
"@junobuild/config": "^2.15.1",
"@junobuild/config": "^3.0.0",
"@junobuild/nextjs-plugin": "^4.7.1",
"@tailwindcss/postcss": "^4.1.13",
"@types/node": "^24",
Expand Down
6 changes: 4 additions & 2 deletions templates/react-example/juno.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>",
},
source: "dist",
predeploy: ["npm run build"],
hosting: {
source: "dist",
predeploy: ["npm run build"],
}
},
});
6 changes: 3 additions & 3 deletions templates/react-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
"postinstall": "npm run postinstall:copy-auth"
},
"dependencies": {
"@junobuild/core": "^5.3.1",
"@junobuild/functions": "^0.8.2",
"@junobuild/core": "^5.4.0",
"@junobuild/functions": "^0.8.3",
"nanoid": "^5.1.5",
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@junobuild/config": "^2.15.1",
"@junobuild/config": "^3.0.0",
"@junobuild/vite-plugin": "^4.7.1",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/vite": "^4.1.13",
Expand Down
6 changes: 4 additions & 2 deletions templates/react-starter/juno.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>",
},
source: "dist",
predeploy: ["npm run build"],
hosting: {
source: "dist",
predeploy: ["npm run build"],
}
},
});
6 changes: 3 additions & 3 deletions templates/react-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
"postinstall": "npm run postinstall:copy-auth"
},
"dependencies": {
"@junobuild/core": "^5.3.1",
"@junobuild/functions": "^0.8.2",
"@junobuild/core": "^5.4.0",
"@junobuild/functions": "^0.8.3",
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@junobuild/config": "^2.15.1",
"@junobuild/config": "^3.0.0",
"@junobuild/vite-plugin": "^4.7.1",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/vite": "^4.1.13",
Expand Down
6 changes: 4 additions & 2 deletions templates/react-ts-example/juno.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>",
},
source: "dist",
predeploy: ["npm run build"],
hosting: {
source: "dist",
predeploy: ["npm run build"],
}
},
});
6 changes: 3 additions & 3 deletions templates/react-ts-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
"postinstall": "npm run postinstall:copy-auth"
},
"dependencies": {
"@junobuild/core": "^5.3.1",
"@junobuild/functions": "^0.8.2",
"@junobuild/core": "^5.4.0",
"@junobuild/functions": "^0.8.3",
"nanoid": "^5.1.5",
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@junobuild/config": "^2.15.1",
"@junobuild/config": "^3.0.0",
"@junobuild/vite-plugin": "^4.7.1",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/vite": "^4.1.13",
Expand Down
6 changes: 4 additions & 2 deletions templates/react-ts-starter/juno.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>",
},
source: "dist",
predeploy: ["npm run build"],
hosting: {
source: "dist",
predeploy: ["npm run build"],
}
},
});
6 changes: 3 additions & 3 deletions templates/react-ts-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
"postinstall": "npm run postinstall:copy-auth"
},
"dependencies": {
"@junobuild/core": "^5.3.1",
"@junobuild/functions": "^0.8.2",
"@junobuild/core": "^5.4.0",
"@junobuild/functions": "^0.8.3",
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@junobuild/config": "^2.15.1",
"@junobuild/config": "^3.0.0",
"@junobuild/vite-plugin": "^4.7.1",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/vite": "^4.1.13",
Expand Down
6 changes: 4 additions & 2 deletions templates/sveltekit-example/juno.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ export default defineConfig({
development: '<DEV_SATELLITE_ID>',
production: '<PROD_SATELLITE_ID>'
},
source: 'build',
predeploy: ['npm run build']
hosting: {
source: 'build',
predeploy: ['npm run build']
}
}
});
6 changes: 3 additions & 3 deletions templates/sveltekit-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"postinstall": "npm run postinstall:copy-auth"
},
"devDependencies": {
"@junobuild/config": "^2.15.1",
"@junobuild/config": "^3.0.0",
"@junobuild/vite-plugin": "^4.7.1",
"@sveltejs/adapter-static": "^3.0.9",
"@sveltejs/kit": "^2.37.0",
Expand All @@ -41,8 +41,8 @@
},
"type": "module",
"dependencies": {
"@junobuild/core": "^5.3.1",
"@junobuild/functions": "^0.8.2",
"@junobuild/core": "^5.4.0",
"@junobuild/functions": "^0.8.3",
"nanoid": "^5.1.5"
},
"overrides": {
Expand Down
6 changes: 4 additions & 2 deletions templates/sveltekit-starter/juno.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ export default defineConfig({
development: '<DEV_SATELLITE_ID>',
production: '<PROD_SATELLITE_ID>'
},
source: 'build',
predeploy: ['npm run build']
hosting: {
source: 'build',
predeploy: ['npm run build']
}
}
});
6 changes: 3 additions & 3 deletions templates/sveltekit-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"postinstall": "npm run postinstall:copy-auth"
},
"devDependencies": {
"@junobuild/config": "^2.15.1",
"@junobuild/config": "^3.0.0",
"@junobuild/vite-plugin": "^4.7.1",
"@sveltejs/adapter-static": "^3.0.9",
"@sveltejs/kit": "^2.37.0",
Expand Down Expand Up @@ -44,7 +44,7 @@
"cookie": "^0.7.0"
},
"dependencies": {
"@junobuild/core": "^5.3.1",
"@junobuild/functions": "^0.8.2"
"@junobuild/core": "^5.4.0",
"@junobuild/functions": "^0.8.3"
}
}
6 changes: 4 additions & 2 deletions templates/vanilla-js-example/juno.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>",
},
source: "dist",
predeploy: ["npm run build"],
hosting: {
source: "dist",
predeploy: ["npm run build"],
}
},
});
6 changes: 3 additions & 3 deletions templates/vanilla-js-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"postinstall": "npm run postinstall:copy-auth"
},
"devDependencies": {
"@junobuild/config": "^2.15.1",
"@junobuild/config": "^3.0.0",
"@junobuild/vite-plugin": "^4.7.1",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/vite": "^4.1.13",
Expand All @@ -22,8 +22,8 @@
"vite": "^7.1.4"
},
"dependencies": {
"@junobuild/core": "^5.3.1",
"@junobuild/functions": "^0.8.2",
"@junobuild/core": "^5.4.0",
"@junobuild/functions": "^0.8.3",
"nanoid": "^5.1.5"
}
}
6 changes: 4 additions & 2 deletions templates/vue-example/juno.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: '<PROD_SATELLITE_ID>'
},
source: "dist",
predeploy: ["npm run build"],
hosting: {
source: "dist",
predeploy: ["npm run build"],
}
},
});
6 changes: 3 additions & 3 deletions templates/vue-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
"postinstall": "npm run postinstall:copy-auth"
},
"dependencies": {
"@junobuild/core": "^5.3.1",
"@junobuild/functions": "^0.8.2",
"@junobuild/core": "^5.4.0",
"@junobuild/functions": "^0.8.3",
"nanoid": "^5.1.5",
"pinia": "^3.0.3",
"vue": "^3.5.21",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@junobuild/config": "^2.15.1",
"@junobuild/config": "^3.0.0",
"@junobuild/vite-plugin": "^4.7.1",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/vite": "^4.1.13",
Expand Down
6 changes: 4 additions & 2 deletions templates/vue-starter/juno.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: '<PROD_SATELLITE_ID>'
},
source: "dist",
predeploy: ["npm run build"],
hosting: {
source: "dist",
predeploy: ["npm run build"],
}
},
});
Loading
Loading