Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

create-oberon-app

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-oberon-app - npm Package Compare versions

Comparing version
0.10.1
to
0.10.2
+21
-4
CHANGELOG.md
# create-oberon-app
## 0.10.2
### Patch Changes
- f24ecd0: Fix a Node.js compatibility issue in the scaffolder by resolving
template/plugin paths by documenting and enforcing a Node.js runtime
requirement of 22+ in the package metadata and README.
- 8265abe: Normalize package `repository.url` metadata to the canonical GitHub
repository URL used in npm provenance validation.
- 4a4ab91: Standardize unit test scripts by introducing `test:unit` and making
`test` call `test:unit`.
- rename direct unit test command from `test` to `test:unit`
- keep `test` as the entrypoint by delegating to `pnpm test:unit`
- add root `test:unit` orchestration for consistent workspace-level unit-test
invocation
- preserve existing e2e-oriented test scripts
## 0.10.1

@@ -71,9 +88,9 @@

migrate all consumers:
- add `@config/eslint`, `@config/typescript`, and `@config/vite`
- add `@dev/eslint`, `@dev/typescript`, and `@dev/vite`
- move workspace `eslint`, `tsconfig`, `tailwind`, and `vite` references to
those packages
- replace `@tohuhono/dev` with `@config/scripts` and keep only the `odt`
tooling export
- replace `@tohuhono/dev` with `@dev/scripts` and keep only the `odt` tooling
export
- modernize package `exports` maps with explicit `types`/`default` conditions
- simplify `@config/vite` to source export + typecheck-only workflow
- simplify `@dev/vite` to source export + typecheck-only workflow

@@ -80,0 +97,0 @@ ## 0.8.0

+0
-2
import { Render } from "@oberoncms/core/render";
import { getMetaData } from "@oberoncms/core";
import { use } from "react";
import { config } from "@/oberon/config";

@@ -7,0 +5,0 @@ import { adapter } from "@/oberon/adapter";

# oberon-cms-example
## 0.16.3
### Patch Changes
- d680fc0: Remove dead code: unused legacy Pages Router file, unused Welcome component
duplicate, and unused import. Add noUnusedLocals/noUnusedParameters to recipe
tsconfig to prevent future unused imports.
- Updated dependencies [fbad025]
- Updated dependencies [d383641]
- Updated dependencies [bcf3676]
- Updated dependencies [25706d7]
- Updated dependencies [8265abe]
- Updated dependencies [4a4ab91]
- @oberoncms/core@0.17.3
- @oberoncms/plugin-development@0.7.3
## 0.16.2

@@ -4,0 +20,0 @@

{
"name": "@oberon/recipe-nextjs",
"version": "0.16.2",
"version": "0.16.3",
"private": true,

@@ -5,0 +5,0 @@ "type": "module",

@@ -14,2 +14,4 @@ {

"isolatedModules": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"jsx": "react-jsx",

@@ -16,0 +18,0 @@ "incremental": true,

{
"name": "create-oberon-app",
"version": "0.10.1",
"version": "0.10.2",
"author": "Tohuhono ltd",

@@ -28,2 +28,5 @@ "repository": {

},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {

@@ -49,13 +52,14 @@ "@commander-js/extra-typings": "^14.0.0",

"vite": "^7.3.1",
"@config/eslint": "0.1.1",
"@config/scripts": "0.1.1",
"@config/typescript": "0.1.1",
"@config/vite": "0.1.1",
"@oberoncms/core": "0.17.2",
"@oberoncms/plugin-development": "0.7.2",
"@oberoncms/plugin-flydrive": "0.8.2",
"@oberoncms/plugin-pgsql": "0.9.2",
"@oberoncms/plugin-turso": "0.17.2",
"@oberoncms/plugin-uploadthing": "0.16.2",
"@tohuhono/utils": "0.13.2"
"@dev/eslint": "0.1.1",
"@dev/scripts": "0.1.1",
"@dev/typescript": "0.1.1",
"@dev/vite": "0.1.2",
"@dev/vitest": "0.1.1",
"@oberoncms/core": "0.17.3",
"@oberoncms/plugin-development": "0.7.3",
"@oberoncms/plugin-flydrive": "0.8.3",
"@oberoncms/plugin-pgsql": "0.9.3",
"@oberoncms/plugin-turso": "0.17.3",
"@oberoncms/plugin-uploadthing": "0.16.3",
"@tohuhono/utils": "0.14.0"
},

@@ -69,2 +73,3 @@ "scripts": {

"lint": "eslint .",
"test:unit": "vitest run",
"tsc": "tsc --pretty",

@@ -71,0 +76,0 @@ "generate:recipes": "node scripts/generate.mjs"

@@ -8,2 +8,4 @@ # create-oberon-app

Requires Node.js 22 or newer.
npx

@@ -10,0 +12,0 @@