Welcome to CARMA, a monolithic repository (monorepo) powered by Nx, designed to streamline the development of reactive GIS applications. This repository leverages the Vite bundler to optimize the build process and improve developer experience with efficient tooling and clear project structures.
Clone the repository:
git clone https://github.com/cismet/carma.git
cd carma
npm install
on dev branch you can also run the custom script
npm run update-all
to refresh the repo and update all submodules
... node 20 or later
Before committing, ensure that the following conditions are met:
if only project is affected, run nx build before pushing.
npx nx build my-project-name
for the whole monorepot run,
npx nx run-many -t build --nxBail
to check that all projects build before committing.
Some possible additional Checks:
npx nx run-many -t lint --nxBail
npx nx run-many -t build-storybook --nxBail
npx nx run-many -t test --nxBail
If build errors occur due to submodules run:
npm run update-all
again, or just
git submodule update --init --recursive --remote --checkout --force
to force update to current remote state of all submodules in the repository.
carma is using Typescript 5.5 as of July 2024 the projects are not transpiled by TypeScript itself and does not emit js.
tsconfig
settings exist primarily for DX.
vite build and vite-plugin-dts
are taking care of the actual transpiling and typescript declaration.
/tsconfig.strict.base.json
should be extending the local project ./tsconfig.json
.
changes to compilerOptions
on a per project basis should be avoided.
/tsconfig.strict.base.json
is recommended but not required./tsconfig.base.json
can be used with local changes as needed./tsconfig.legacy.base.json
as lowest level of existing strictness permitted./tsconfig.base.json
as optional intermediate step/tsconfig.strict.base.json
should be adopted, if feasible, on a per project commit basis.Manually imported/copied .js
and .jsx
files that don't have any meaningful type safety checks (ts-ified by lots of any) should stay as .js
and .jsx
and not be renamed to .ts
and .tsx
or flagged with ts-ignore
before proper type safety is implemented.
All configurations should allow importing .js
common custom carma types and type declarations for external libraries
are to be added to their respective /types/*.d.ts
... tbd
types are enforced to be imported separately from the module. e.g.:
import type { ReactNode } from "react";
import { useEffect } from "react";
not mixed in like
import React, { useEffect, ReactNode } from "react";
uses eslint flat config in
/eslint.config.cjs
can be run per project with
npx nx run [projectname]:lint
Default ruleset is tseslint.configs.strictTypeChecked.
with some custom react and a11y rules.
desirable should be 0 warnings for added code.
for nx to register changes to the file, one might need to clear the cache with
npx nx reset
or run with skip cache option
npx nx run [projectname]:lint --skipNxCache
Always do nx updates with the provided migrate utility.
-- npx nx migrate nx@latest
(prerequisites: have npm-check-updates
installed globally with npm install -g npm-check-updates
)
until further notice keep:
the remaining dev deps can be updated with
npx npm-check-updates --dep dev --reject "eslint* *vitest* prettier *storybook*"
and after sanity check
npx npm-check-updates --dep dev --reject "eslint* *vitest* prettier *storybook*" -u
same as dev packages, but keep integration/migration heavy major upgrades like bootstrap or react-pdf-html at current versions
npx npm-check-updates --dep prod --reject "\*bootstrap react-pdf-html graphql-request"