rename project from SimpleshopTheme to Berrypod

All modules, configs, paths, and references updated.
836 tests pass, zero warnings.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jamey
2026-02-18 21:23:15 +00:00
parent c65e777832
commit 9528700862
300 changed files with 23932 additions and 1349 deletions

20
mix.exs
View File

@@ -1,16 +1,16 @@
defmodule SimpleshopTheme.MixProject do
defmodule Berrypod.MixProject do
use Mix.Project
def project do
[
app: :simpleshop_theme,
app: :berrypod,
version: "0.1.0",
elixir: "~> 1.15",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps(),
releases: [simpleshop_theme: [strip_beams: true]],
releases: [berrypod: [strip_beams: true]],
compilers: [:phoenix_live_view] ++ Mix.compilers(),
listeners: [Phoenix.CodeReloader],
dialyzer: [ignore_warnings: ".dialyzer_ignore.exs"]
@@ -22,7 +22,7 @@ defmodule SimpleshopTheme.MixProject do
# Type `mix help compile.app` for more information.
def application do
[
mod: {SimpleshopTheme.Application, []},
mod: {Berrypod.Application, []},
extra_applications: [:logger, :runtime_tools, :os_mon]
]
end
@@ -97,14 +97,14 @@ defmodule SimpleshopTheme.MixProject do
"assets.setup": ["esbuild.install --if-missing"],
"assets.build": [
"compile",
"esbuild simpleshop_theme",
"esbuild simpleshop_theme_shop_css",
"esbuild simpleshop_theme_admin_css"
"esbuild berrypod",
"esbuild berrypod_shop_css",
"esbuild berrypod_admin_css"
],
"assets.deploy": [
"esbuild simpleshop_theme --minify",
"esbuild simpleshop_theme_shop_css --minify",
"esbuild simpleshop_theme_admin_css --minify",
"esbuild berrypod --minify",
"esbuild berrypod_shop_css --minify",
"esbuild berrypod_admin_css --minify",
"phx.digest"
],
precommit: ["compile --warning-as-errors", "deps.unlock --unused", "format", "test"],