|
|
%!s(int64=6) %!d(string=před) dny | |
|---|---|---|
| .. | ||
| public | před 1 měsícem | |
| src | %!s(int64=6) %!d(string=před) dny | |
| .gitignore | před 1 měsícem | |
| README.md | před 1 měsícem | |
| components.json | před 1 měsícem | |
| eslint.config.js | před 1 měsícem | |
| jsconfig.json | před 1 měsícem | |
| package-lock.json | %!s(int64=6) %!d(string=před) dny | |
| package.json | %!s(int64=6) %!d(string=před) dny | |
| postcss.config.js | před 1 měsícem | |
| svelte.config.js | před 1 měsícem | |
| tailwind.config.js | před 1 měsícem | |
| vite.config.js | před 1 měsícem | |
First, we need to install dependencies:
npm install
Then, we can build IRIS application and rebuild it on changes:
npm run watch
To execute linting of source files:
npm run lint
First, we need to install dependencies:
npm ci
Then, we can build IRIS application:
npm run build
Find outdated packages:
npm outdated
Find vulnerables packages:
npm audit
Here are some of the most important directories under ui folder:
src: IRIS specific JS files.public: Static assets such as images, fonts but also CSS and JS files from vendors (external libraries).dist: The dist folder, short for distribution folder, is dynamically generated when running one of the build commands listed above. The generation is a two steps process: first, public folder is copied into dist then JS code is bundled from src and copied into dist.