├── .changeset ├── README.md └── config.json ├── .editorconfig ├── .eslintignore ├── .gitattributes ├── .github └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg ├── pre-commit └── pre-push ├── .lintstagedrc ├── .prettierignore ├── .prettierrc.cjs ├── .yarn └── releases │ └── yarn-4.3.1.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── apps ├── docs │ ├── .gitignore │ ├── .vitepress │ │ ├── config.ts │ │ └── theme │ │ │ ├── index.ts │ │ │ └── style.css │ ├── README.md │ ├── figma │ │ ├── api │ │ │ ├── export │ │ │ │ ├── export-file-assets.md │ │ │ │ ├── export-published-components.md │ │ │ │ └── index.md │ │ │ ├── figma-api.md │ │ │ ├── figma-client.md │ │ │ ├── graph │ │ │ │ └── index.md │ │ │ └── low-level │ │ │ │ ├── collect-nodes.md │ │ │ │ ├── create-export-context.md │ │ │ │ ├── create-file-graph.md │ │ │ │ ├── download-exported-assets.md │ │ │ │ ├── resolve-exported-assets.md │ │ │ │ ├── utils.md │ │ │ │ └── write-downloaded-assets.md │ │ ├── index.md │ │ ├── motivation.md │ │ ├── recipes │ │ │ ├── export-file-assets.md │ │ │ ├── export-published-components.md │ │ │ └── traverse-figma-file.md │ │ └── using-client.md │ ├── glob │ │ ├── api.md │ │ ├── index.md │ │ └── writing-your-glob.md │ ├── index.md │ ├── log │ │ ├── api │ │ │ ├── create-logger-factory.md │ │ │ ├── create-logger.md │ │ │ ├── http.md │ │ │ ├── logger.md │ │ │ ├── pretty.md │ │ │ ├── printf.md │ │ │ └── read-arguments.md │ │ ├── building-your-own-logger.md │ │ ├── fork-and-child.md │ │ ├── formatting.md │ │ ├── frameworks │ │ │ ├── express.md │ │ │ ├── http.md │ │ │ ├── index.md │ │ │ └── koa.md │ │ ├── index.md │ │ ├── metadata.md │ │ ├── motivation.md │ │ └── targets │ │ │ ├── json.md │ │ │ └── pretty.md │ ├── package.json │ ├── public │ │ ├── android-chrome-144x144.png │ │ ├── android-chrome-192x192.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── crazy-svg-mix.png │ │ ├── export-file-assets │ │ │ ├── get-figma-token.png │ │ │ ├── output.png │ │ │ └── source.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── log │ │ │ ├── example-express-logs.png │ │ │ ├── example-http-logs.png │ │ │ ├── example-koa-logs.png │ │ │ ├── pretty-errors-cause.png │ │ │ ├── pretty-errors-chained.png │ │ │ ├── pretty-errors-off.png │ │ │ ├── pretty-target.png │ │ │ └── preview-intro.png │ │ ├── logo.png │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ ├── site.webmanifest │ │ ├── svg │ │ │ └── text-alignment │ │ │ │ ├── issue.png │ │ │ │ ├── layout-fix.png │ │ │ │ ├── sandbox.png │ │ │ │ ├── typeface-layout.png │ │ │ │ └── typefaces-variants.png │ │ ├── vfs │ │ │ └── example-vfs-types-mismatch.png │ │ └── wrong-svg-size.png │ ├── svg │ │ ├── api │ │ │ ├── builder.md │ │ │ ├── features │ │ │ │ ├── metadata.md │ │ │ │ ├── optimization.md │ │ │ │ ├── reset-colors.md │ │ │ │ └── sprite.md │ │ │ └── index.md │ │ ├── cleanup.md │ │ ├── cli.md │ │ ├── colors-reset.md │ │ ├── faq.md │ │ ├── group-and-hash.md │ │ ├── index.md │ │ ├── inlining.md │ │ ├── integration │ │ │ ├── figma.md │ │ │ ├── heroicons.md │ │ │ ├── index.md │ │ │ ├── react.md │ │ │ ├── solid.md │ │ │ ├── svelte.md │ │ │ └── vue.md │ │ ├── metadata.md │ │ ├── migration.md │ │ ├── motivation.md │ │ ├── multicolored.md │ │ ├── optimization.md │ │ ├── recipes │ │ │ ├── cdn-compatibility.md │ │ │ ├── text-alignment.md │ │ │ └── tokens-naming.md │ │ ├── setup │ │ │ ├── index.md │ │ │ ├── next.md │ │ │ ├── node.md │ │ │ ├── other.md │ │ │ ├── storybook.md │ │ │ ├── vite.md │ │ │ └── webpack.md │ │ ├── shared │ │ │ ├── no-built-in-component-disclaimer.md │ │ │ ├── node-api-snippet.md │ │ │ ├── preview-tailwind-styles.md │ │ │ └── preview-vite-config.md │ │ └── writing-icon-component.md │ ├── tailwind.config.js │ └── vfs │ │ ├── api │ │ ├── backend.md │ │ ├── common.md │ │ ├── context.md │ │ ├── create-base-vfs.md │ │ ├── create-vfs.md │ │ └── plugins.md │ │ ├── extending.md │ │ ├── index.md │ │ ├── limitations.md │ │ └── plugins │ │ ├── eslint.md │ │ ├── glob.md │ │ ├── json.md │ │ ├── package-json.md │ │ ├── prettier.md │ │ └── scan.md ├── e2e │ └── svg │ │ ├── .eslintrc.cjs │ │ ├── README.md │ │ ├── index.html │ │ ├── package.json │ │ ├── playwright.config.ts │ │ ├── playwright.setup.mjs │ │ ├── postcss.config.cjs │ │ ├── public │ │ └── sprites │ │ │ ├── inline-all-extract.svg │ │ │ ├── inline-auto.svg │ │ │ └── no-inline.svg │ │ ├── src │ │ ├── assets │ │ │ ├── add.svg │ │ │ ├── animated-mask.svg │ │ │ ├── animated-pattern.svg │ │ │ ├── animated-symbol.svg │ │ │ ├── checkmark.svg │ │ │ ├── close.svg │ │ │ ├── combined-filter.svg │ │ │ ├── dynamic-filter.svg │ │ │ ├── favourite.svg │ │ │ ├── flag-ad.svg │ │ │ ├── flag-uk.svg │ │ │ ├── folder-colored.svg │ │ │ ├── hex-a-fill.svg │ │ │ ├── linear-gradient.svg │ │ │ ├── mixed-animation-pattern.svg │ │ │ ├── mixed-gradient.svg │ │ │ └── simple-hex-upper.svg │ │ ├── inline-all-extract.gen.ts │ │ ├── inline-all.gen.ts │ │ ├── inline-auto.gen.ts │ │ ├── main.tsx │ │ ├── no-inline.gen.ts │ │ ├── sprite.gen.ts │ │ └── styles.css │ │ ├── static-server.cjs │ │ ├── tailwind.config.cjs │ │ ├── tests │ │ ├── svg-e2e.test.ts │ │ └── svg-e2e.test.ts-snapshots │ │ │ └── sprites-e2e-chromium-darwin.png │ │ ├── tsconfig.json │ │ └── vite.config.ts └── examples │ ├── figma │ ├── export-file-assets │ │ ├── .eslintrc.cjs │ │ ├── README.md │ │ ├── assets │ │ │ └── icons │ │ │ │ ├── blizzard.svg │ │ │ │ ├── blowing-snow.svg │ │ │ │ ├── clear-night.svg │ │ │ │ ├── cloudy-clear-at-times-night.svg │ │ │ │ ├── cloudy-clear-at-times.svg │ │ │ │ ├── cloudy.svg │ │ │ │ ├── drizzle-night.svg │ │ │ │ ├── drizzle-sun.svg │ │ │ │ ├── drizzle.svg │ │ │ │ ├── fog.svg │ │ │ │ ├── hail.svg │ │ │ │ ├── heavy-rain.svg │ │ │ │ ├── humidity.svg │ │ │ │ ├── partly-cloudy-night.svg │ │ │ │ ├── partly-cloudy.svg │ │ │ │ ├── rain-night.svg │ │ │ │ ├── rain-sun.svg │ │ │ │ ├── rain-thunderstorm.svg │ │ │ │ ├── rain.svg │ │ │ │ ├── scatterad-showers-night.svg │ │ │ │ ├── scatterad-showers.svg │ │ │ │ ├── scatterad-thunderstorm.svg │ │ │ │ ├── sever-thunderstorm.svg │ │ │ │ ├── sleet.svg │ │ │ │ ├── snow.svg │ │ │ │ ├── sunny.svg │ │ │ │ └── wind.svg │ │ ├── docs │ │ │ ├── get-figma-token.png │ │ │ ├── output.png │ │ │ └── source.png │ │ ├── figma.config.cjs │ │ └── package.json │ └── export-published │ │ ├── .eslintrc.cjs │ │ ├── README.md │ │ ├── assets │ │ ├── icons │ │ │ ├── .cache.json │ │ │ ├── size-lg.svg │ │ │ ├── size-md.svg │ │ │ └── size-sm.svg │ │ └── wolf │ │ │ └── .cache.json │ │ ├── figma.config.cjs │ │ └── package.json │ ├── log │ ├── frameworks-showcase │ │ ├── .eslintrc.cjs │ │ ├── express │ │ │ ├── app.ts │ │ │ └── routes.ts │ │ ├── koa │ │ │ ├── app.ts │ │ │ └── routes.ts │ │ ├── node-http │ │ │ └── app.ts │ │ ├── package.json │ │ └── tsconfig.json │ └── simple-client │ │ ├── .eslintrc.cjs │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ └── client.ts │ │ └── shared │ │ │ └── lib.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts │ └── svg │ ├── figma │ ├── .eslintrc.cjs │ ├── README.md │ ├── assets │ │ └── icons │ │ │ ├── general │ │ │ ├── autoscroll-from-source.svg │ │ │ ├── autoscroll-to-source.svg │ │ │ ├── checkmark.svg │ │ │ ├── chevron-down-large.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up-large.svg │ │ │ ├── chevron-up.svg │ │ │ ├── close-small-hovered.svg │ │ │ ├── close-small.svg │ │ │ ├── close.svg │ │ │ ├── collapse-all.svg │ │ │ ├── copy.svg │ │ │ ├── cut.svg │ │ │ ├── delete.svg │ │ │ ├── down.svg │ │ │ ├── download.svg │ │ │ ├── edit.svg │ │ │ ├── exit.svg │ │ │ ├── expand-all.svg │ │ │ ├── export.svg │ │ │ ├── external-link.svg │ │ │ ├── filter.svg │ │ │ ├── groups.svg │ │ │ ├── help.svg │ │ │ ├── hide.svg │ │ │ ├── history.svg │ │ │ ├── ide-update.svg │ │ │ ├── import.svg │ │ │ ├── layout.svg │ │ │ ├── left.svg │ │ │ ├── list-files.svg │ │ │ ├── locate.svg │ │ │ ├── locked.svg │ │ │ ├── more-horizontal.svg │ │ │ ├── more-vertical.svg │ │ │ ├── move-down.svg │ │ │ ├── move-up.svg │ │ │ ├── open-in-tool-window.svg │ │ │ ├── open-new-tab.svg │ │ │ ├── open.svg │ │ │ ├── pagination.svg │ │ │ ├── paste.svg │ │ │ ├── pin.svg │ │ │ ├── plugin-update.svg │ │ │ ├── preview-horizontally.svg │ │ │ ├── preview-vertically.svg │ │ │ ├── print.svg │ │ │ ├── project-structure.svg │ │ │ ├── project-wide-analysis-off.svg │ │ │ ├── project-wide-analysis-on.svg │ │ │ ├── redo.svg │ │ │ ├── refresh.svg │ │ │ ├── remove.svg │ │ │ ├── right.svg │ │ │ ├── run-anything.svg │ │ │ ├── save.svg │ │ │ ├── scroll-down.svg │ │ │ ├── search.svg │ │ │ ├── settings.svg │ │ │ ├── show-as-tree.svg │ │ │ ├── show.svg │ │ │ ├── soft-wrap.svg │ │ │ ├── sort-alphabetically.svg │ │ │ ├── sort-by-duration.svg │ │ │ ├── sort-by-type.svg │ │ │ ├── sort-by-usage.svg │ │ │ ├── sort-by-visibility.svg │ │ │ ├── sort-by.svg │ │ │ ├── split-horizontally.svg │ │ │ ├── split-vertically.svg │ │ │ ├── undo.svg │ │ │ ├── unlocked.svg │ │ │ ├── up.svg │ │ │ ├── upload.svg │ │ │ └── vcs.svg │ │ │ ├── theme-light.svg │ │ │ └── tool-windows │ │ │ ├── ant.svg │ │ │ ├── aws-glue.svg │ │ │ ├── bookmarks.svg │ │ │ ├── build-server-protocol.svg │ │ │ ├── build.svg │ │ │ ├── c-make-tool-window.svg │ │ │ ├── changes.svg │ │ │ ├── commit.svg │ │ │ ├── concurrency-diagram-toolwindow.svg │ │ │ ├── coverage.svg │ │ │ ├── cwm-access.svg │ │ │ ├── cwm-users.svg │ │ │ ├── database-changes.svg │ │ │ ├── dataproc-tool-window.svg │ │ │ ├── dbms.svg │ │ │ ├── debug.svg │ │ │ ├── dependencies.svg │ │ │ ├── documentation.svg │ │ │ ├── donate.svg │ │ │ ├── endpoints.svg │ │ │ ├── exception-analyzer.svg │ │ │ ├── find-external-usages.svg │ │ │ ├── find.svg │ │ │ ├── gitlab.svg │ │ │ ├── gradle.svg │ │ │ ├── hierarchy.svg │ │ │ ├── hive.svg │ │ │ ├── jupyter-tool-window.svg │ │ │ ├── kafka.svg │ │ │ ├── kotlin-tool-window.svg │ │ │ ├── learn.svg │ │ │ ├── makefile-tool-window.svg │ │ │ ├── maven.svg │ │ │ ├── messages.svg │ │ │ ├── new-u-i.svg │ │ │ ├── notifications.svg │ │ │ ├── npm.svg │ │ │ ├── package-manager.svg │ │ │ ├── problems.svg │ │ │ ├── profiler.svg │ │ │ ├── project.svg │ │ │ ├── pull-requests.svg │ │ │ ├── python-console-tool-window.svg │ │ │ ├── repositories.svg │ │ │ ├── run.svg │ │ │ ├── rust.svg │ │ │ ├── sbt-icon.svg │ │ │ ├── sbt-shell.svg │ │ │ ├── sci-view.svg │ │ │ ├── services.svg │ │ │ ├── setting-sync.svg │ │ │ ├── space-tool-window.svg │ │ │ ├── spring.svg │ │ │ ├── structure.svg │ │ │ ├── task.svg │ │ │ ├── terminal.svg │ │ │ ├── todo.svg │ │ │ ├── transfer.svg │ │ │ ├── unknown.svg │ │ │ ├── vcs.svg │ │ │ ├── web-locator.svg │ │ │ ├── web-server.svg │ │ │ ├── web.svg │ │ │ ├── writerside-preview.svg │ │ │ └── writerside.svg │ ├── docs │ │ ├── kit-overview.png │ │ ├── result-editor.png │ │ └── result.png │ ├── figma.config.cjs │ ├── index.html │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ │ └── sprites │ │ │ ├── general.7013ce0c.svg │ │ │ ├── global.f9b62255.svg │ │ │ └── tool-windows.94c5ce95.svg │ ├── src │ │ ├── app │ │ │ ├── app.tsx │ │ │ └── client.tsx │ │ └── shared │ │ │ └── ui │ │ │ ├── icon │ │ │ ├── icon.tsx │ │ │ ├── index.ts │ │ │ └── sprite.gen.ts │ │ │ ├── index.css │ │ │ ├── input.tsx │ │ │ └── shared.ts │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.ts │ ├── heroicons │ ├── .eslintrc.cjs │ ├── README.md │ ├── index.html │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ │ └── sprites │ │ │ ├── 16 │ │ │ └── solid.085326a8.svg │ │ │ ├── 20 │ │ │ └── solid.424d6c1c.svg │ │ │ └── 24 │ │ │ ├── outline.fefef743.svg │ │ │ └── solid.83eb43fb.svg │ ├── src │ │ ├── app │ │ │ ├── app.tsx │ │ │ └── client.tsx │ │ ├── screens │ │ │ ├── heroicons-react.tsx │ │ │ └── neodx-svg.tsx │ │ └── shared │ │ │ └── ui │ │ │ ├── badge.tsx │ │ │ ├── icon │ │ │ ├── icon.tsx │ │ │ ├── index.ts │ │ │ └── sprite.gen.ts │ │ │ ├── icons-showcase │ │ │ ├── icons-showcase.module.css │ │ │ └── icons-showcase.tsx │ │ │ ├── index.css │ │ │ ├── informer.tsx │ │ │ ├── input.tsx │ │ │ ├── playground.tsx │ │ │ ├── select.tsx │ │ │ ├── shared.ts │ │ │ └── tabs.tsx │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.ts │ ├── next │ ├── .eslintrc.cjs │ ├── README.md │ ├── next.config.js │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ │ ├── favicon.ico │ │ ├── general.svg │ │ ├── next.svg │ │ ├── sprite.svg │ │ ├── sprites │ │ │ ├── general.7fbf930d.svg │ │ │ ├── other.35c4e813.svg │ │ │ └── tool-windows.94c5ce95.svg │ │ ├── tools.svg │ │ └── vercel.svg │ ├── src │ │ ├── pages │ │ │ ├── _app.tsx │ │ │ └── index.tsx │ │ └── shared │ │ │ └── ui │ │ │ ├── badge.tsx │ │ │ ├── icon │ │ │ ├── assets │ │ │ │ ├── general │ │ │ │ │ ├── autoscroll-from-source.svg │ │ │ │ │ ├── autoscroll-to-source.svg │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ ├── chevron-down-large.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up-large.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── close-small-hovered.svg │ │ │ │ │ ├── close-small.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── cut.svg │ │ │ │ │ ├── delete.svg │ │ │ │ │ ├── down.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── exit.svg │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ ├── export.svg │ │ │ │ │ ├── external-link.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── groups.svg │ │ │ │ │ ├── help.svg │ │ │ │ │ ├── hide.svg │ │ │ │ │ ├── history.svg │ │ │ │ │ ├── ide-update.svg │ │ │ │ │ ├── import.svg │ │ │ │ │ ├── layout.svg │ │ │ │ │ ├── left.svg │ │ │ │ │ ├── list-files.svg │ │ │ │ │ ├── locate.svg │ │ │ │ │ ├── locked.svg │ │ │ │ │ ├── more-horizontal.svg │ │ │ │ │ ├── more-vertical.svg │ │ │ │ │ ├── move-down.svg │ │ │ │ │ ├── move-up.svg │ │ │ │ │ ├── open-in-tool-window.svg │ │ │ │ │ ├── open-new-tab.svg │ │ │ │ │ ├── open.svg │ │ │ │ │ ├── pagination.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pin.svg │ │ │ │ │ ├── plugin-update.svg │ │ │ │ │ ├── preview-horizontally.svg │ │ │ │ │ ├── preview-vertically.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── project-structure.svg │ │ │ │ │ ├── project-wide-analysis-off.svg │ │ │ │ │ ├── project-wide-analysis-on.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── refresh.svg │ │ │ │ │ ├── remove.svg │ │ │ │ │ ├── right.svg │ │ │ │ │ ├── run-anything.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── scroll-down.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── settings.svg │ │ │ │ │ ├── show-as-tree.svg │ │ │ │ │ ├── show.svg │ │ │ │ │ ├── soft-wrap.svg │ │ │ │ │ ├── sort-alphabetically.svg │ │ │ │ │ ├── sort-by-duration.svg │ │ │ │ │ ├── sort-by-type.svg │ │ │ │ │ ├── sort-by-usage.svg │ │ │ │ │ ├── sort-by-visibility.svg │ │ │ │ │ ├── sort-by.svg │ │ │ │ │ ├── split-horizontally.svg │ │ │ │ │ ├── split-vertically.svg │ │ │ │ │ ├── undo.svg │ │ │ │ │ ├── unlocked.svg │ │ │ │ │ ├── up.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ └── vcs.svg │ │ │ │ ├── other │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── uk.svg │ │ │ │ │ └── us.svg │ │ │ │ └── tool-windows │ │ │ │ │ ├── ant.svg │ │ │ │ │ ├── aws-glue.svg │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ ├── build-server-protocol.svg │ │ │ │ │ ├── build.svg │ │ │ │ │ ├── c-make-tool-window.svg │ │ │ │ │ ├── changes.svg │ │ │ │ │ ├── commit.svg │ │ │ │ │ ├── concurrency-diagram-toolwindow.svg │ │ │ │ │ ├── coverage.svg │ │ │ │ │ ├── cwm-access.svg │ │ │ │ │ ├── cwm-users.svg │ │ │ │ │ ├── database-changes.svg │ │ │ │ │ ├── dataproc-tool-window.svg │ │ │ │ │ ├── dbms.svg │ │ │ │ │ ├── debug.svg │ │ │ │ │ ├── dependencies.svg │ │ │ │ │ ├── documentation.svg │ │ │ │ │ ├── donate.svg │ │ │ │ │ ├── endpoints.svg │ │ │ │ │ ├── exception-analyzer.svg │ │ │ │ │ ├── find-external-usages.svg │ │ │ │ │ ├── find.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── gradle.svg │ │ │ │ │ ├── hierarchy.svg │ │ │ │ │ ├── hive.svg │ │ │ │ │ ├── jupyter-tool-window.svg │ │ │ │ │ ├── kafka.svg │ │ │ │ │ ├── kotlin-tool-window.svg │ │ │ │ │ ├── learn.svg │ │ │ │ │ ├── makefile-tool-window.svg │ │ │ │ │ ├── maven.svg │ │ │ │ │ ├── messages.svg │ │ │ │ │ ├── new-u-i.svg │ │ │ │ │ ├── notifications.svg │ │ │ │ │ ├── npm.svg │ │ │ │ │ ├── package-manager.svg │ │ │ │ │ ├── problems.svg │ │ │ │ │ ├── profiler.svg │ │ │ │ │ ├── project.svg │ │ │ │ │ ├── pull-requests.svg │ │ │ │ │ ├── python-console-tool-window.svg │ │ │ │ │ ├── repositories.svg │ │ │ │ │ ├── run.svg │ │ │ │ │ ├── rust.svg │ │ │ │ │ ├── sbt-icon.svg │ │ │ │ │ ├── sbt-shell.svg │ │ │ │ │ ├── sci-view.svg │ │ │ │ │ ├── services.svg │ │ │ │ │ ├── setting-sync.svg │ │ │ │ │ ├── space-tool-window.svg │ │ │ │ │ ├── spring.svg │ │ │ │ │ ├── structure.svg │ │ │ │ │ ├── task.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── todo.svg │ │ │ │ │ ├── transfer.svg │ │ │ │ │ ├── unknown.svg │ │ │ │ │ ├── vcs.svg │ │ │ │ │ ├── web-locator.svg │ │ │ │ │ ├── web-server.svg │ │ │ │ │ ├── web.svg │ │ │ │ │ ├── writerside-preview.svg │ │ │ │ │ └── writerside.svg │ │ │ ├── icon.tsx │ │ │ ├── index.ts │ │ │ └── sprite.gen.ts │ │ │ ├── icons-showcase │ │ │ ├── icons-showcase.module.css │ │ │ └── icons-showcase.tsx │ │ │ ├── index.css │ │ │ ├── informer.tsx │ │ │ ├── input.tsx │ │ │ ├── shared.ts │ │ │ └── tabs.tsx │ ├── tailwind.config.cjs │ └── tsconfig.json │ ├── storybook │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .storybook │ │ ├── main.ts │ │ └── preview.ts │ ├── README.md │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ │ └── sprites │ │ │ ├── general.7fbf930d.svg │ │ │ ├── other.35c4e813.svg │ │ │ └── tool-windows.94c5ce95.svg │ ├── src │ │ └── shared │ │ │ └── ui │ │ │ ├── badge.tsx │ │ │ ├── icon │ │ │ ├── assets │ │ │ │ ├── general │ │ │ │ │ ├── autoscroll-from-source.svg │ │ │ │ │ ├── autoscroll-to-source.svg │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ ├── chevron-down-large.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up-large.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── close-small-hovered.svg │ │ │ │ │ ├── close-small.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── cut.svg │ │ │ │ │ ├── delete.svg │ │ │ │ │ ├── down.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── exit.svg │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ ├── export.svg │ │ │ │ │ ├── external-link.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── groups.svg │ │ │ │ │ ├── help.svg │ │ │ │ │ ├── hide.svg │ │ │ │ │ ├── history.svg │ │ │ │ │ ├── ide-update.svg │ │ │ │ │ ├── import.svg │ │ │ │ │ ├── layout.svg │ │ │ │ │ ├── left.svg │ │ │ │ │ ├── list-files.svg │ │ │ │ │ ├── locate.svg │ │ │ │ │ ├── locked.svg │ │ │ │ │ ├── more-horizontal.svg │ │ │ │ │ ├── more-vertical.svg │ │ │ │ │ ├── move-down.svg │ │ │ │ │ ├── move-up.svg │ │ │ │ │ ├── open-in-tool-window.svg │ │ │ │ │ ├── open-new-tab.svg │ │ │ │ │ ├── open.svg │ │ │ │ │ ├── pagination.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pin.svg │ │ │ │ │ ├── plugin-update.svg │ │ │ │ │ ├── preview-horizontally.svg │ │ │ │ │ ├── preview-vertically.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── project-structure.svg │ │ │ │ │ ├── project-wide-analysis-off.svg │ │ │ │ │ ├── project-wide-analysis-on.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── refresh.svg │ │ │ │ │ ├── remove.svg │ │ │ │ │ ├── right.svg │ │ │ │ │ ├── run-anything.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── scroll-down.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── settings.svg │ │ │ │ │ ├── show-as-tree.svg │ │ │ │ │ ├── show.svg │ │ │ │ │ ├── soft-wrap.svg │ │ │ │ │ ├── sort-alphabetically.svg │ │ │ │ │ ├── sort-by-duration.svg │ │ │ │ │ ├── sort-by-type.svg │ │ │ │ │ ├── sort-by-usage.svg │ │ │ │ │ ├── sort-by-visibility.svg │ │ │ │ │ ├── sort-by.svg │ │ │ │ │ ├── split-horizontally.svg │ │ │ │ │ ├── split-vertically.svg │ │ │ │ │ ├── undo.svg │ │ │ │ │ ├── unlocked.svg │ │ │ │ │ ├── up.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ └── vcs.svg │ │ │ │ ├── other │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── uk.svg │ │ │ │ │ └── us.svg │ │ │ │ └── tool-windows │ │ │ │ │ ├── ant.svg │ │ │ │ │ ├── aws-glue.svg │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ ├── build-server-protocol.svg │ │ │ │ │ ├── build.svg │ │ │ │ │ ├── c-make-tool-window.svg │ │ │ │ │ ├── changes.svg │ │ │ │ │ ├── commit.svg │ │ │ │ │ ├── concurrency-diagram-toolwindow.svg │ │ │ │ │ ├── coverage.svg │ │ │ │ │ ├── cwm-access.svg │ │ │ │ │ ├── cwm-users.svg │ │ │ │ │ ├── database-changes.svg │ │ │ │ │ ├── dataproc-tool-window.svg │ │ │ │ │ ├── dbms.svg │ │ │ │ │ ├── debug.svg │ │ │ │ │ ├── dependencies.svg │ │ │ │ │ ├── documentation.svg │ │ │ │ │ ├── donate.svg │ │ │ │ │ ├── endpoints.svg │ │ │ │ │ ├── exception-analyzer.svg │ │ │ │ │ ├── find-external-usages.svg │ │ │ │ │ ├── find.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── gradle.svg │ │ │ │ │ ├── hierarchy.svg │ │ │ │ │ ├── hive.svg │ │ │ │ │ ├── jupyter-tool-window.svg │ │ │ │ │ ├── kafka.svg │ │ │ │ │ ├── kotlin-tool-window.svg │ │ │ │ │ ├── learn.svg │ │ │ │ │ ├── makefile-tool-window.svg │ │ │ │ │ ├── maven.svg │ │ │ │ │ ├── messages.svg │ │ │ │ │ ├── new-u-i.svg │ │ │ │ │ ├── notifications.svg │ │ │ │ │ ├── npm.svg │ │ │ │ │ ├── package-manager.svg │ │ │ │ │ ├── problems.svg │ │ │ │ │ ├── profiler.svg │ │ │ │ │ ├── project.svg │ │ │ │ │ ├── pull-requests.svg │ │ │ │ │ ├── python-console-tool-window.svg │ │ │ │ │ ├── repositories.svg │ │ │ │ │ ├── run.svg │ │ │ │ │ ├── rust.svg │ │ │ │ │ ├── sbt-icon.svg │ │ │ │ │ ├── sbt-shell.svg │ │ │ │ │ ├── sci-view.svg │ │ │ │ │ ├── services.svg │ │ │ │ │ ├── setting-sync.svg │ │ │ │ │ ├── space-tool-window.svg │ │ │ │ │ ├── spring.svg │ │ │ │ │ ├── structure.svg │ │ │ │ │ ├── task.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── todo.svg │ │ │ │ │ ├── transfer.svg │ │ │ │ │ ├── unknown.svg │ │ │ │ │ ├── vcs.svg │ │ │ │ │ ├── web-locator.svg │ │ │ │ │ ├── web-server.svg │ │ │ │ │ ├── web.svg │ │ │ │ │ ├── writerside-preview.svg │ │ │ │ │ └── writerside.svg │ │ │ ├── icon.stories.tsx │ │ │ ├── icon.tsx │ │ │ ├── index.ts │ │ │ └── sprite.gen.ts │ │ │ ├── icons-showcase │ │ │ ├── icons-showcase.module.css │ │ │ └── icons-showcase.tsx │ │ │ ├── index.css │ │ │ ├── informer.tsx │ │ │ ├── input.tsx │ │ │ └── shared.ts │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.ts │ ├── vite-react │ ├── .eslintrc.cjs │ ├── README.md │ ├── docs │ │ └── result.png │ ├── index.html │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ │ └── sprites │ │ │ ├── general.7fbf930d.svg │ │ │ ├── other.35c4e813.svg │ │ │ └── tool-windows.94c5ce95.svg │ ├── src │ │ ├── app │ │ │ ├── app.tsx │ │ │ └── client.tsx │ │ └── shared │ │ │ └── ui │ │ │ ├── badge.tsx │ │ │ ├── icon │ │ │ ├── assets │ │ │ │ ├── general │ │ │ │ │ ├── autoscroll-from-source.svg │ │ │ │ │ ├── autoscroll-to-source.svg │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ ├── chevron-down-large.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up-large.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── close-small-hovered.svg │ │ │ │ │ ├── close-small.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── cut.svg │ │ │ │ │ ├── delete.svg │ │ │ │ │ ├── down.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── exit.svg │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ ├── export.svg │ │ │ │ │ ├── external-link.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── groups.svg │ │ │ │ │ ├── help.svg │ │ │ │ │ ├── hide.svg │ │ │ │ │ ├── history.svg │ │ │ │ │ ├── ide-update.svg │ │ │ │ │ ├── import.svg │ │ │ │ │ ├── layout.svg │ │ │ │ │ ├── left.svg │ │ │ │ │ ├── list-files.svg │ │ │ │ │ ├── locate.svg │ │ │ │ │ ├── locked.svg │ │ │ │ │ ├── more-horizontal.svg │ │ │ │ │ ├── more-vertical.svg │ │ │ │ │ ├── move-down.svg │ │ │ │ │ ├── move-up.svg │ │ │ │ │ ├── open-in-tool-window.svg │ │ │ │ │ ├── open-new-tab.svg │ │ │ │ │ ├── open.svg │ │ │ │ │ ├── pagination.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pin.svg │ │ │ │ │ ├── plugin-update.svg │ │ │ │ │ ├── preview-horizontally.svg │ │ │ │ │ ├── preview-vertically.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── project-structure.svg │ │ │ │ │ ├── project-wide-analysis-off.svg │ │ │ │ │ ├── project-wide-analysis-on.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── refresh.svg │ │ │ │ │ ├── remove.svg │ │ │ │ │ ├── right.svg │ │ │ │ │ ├── run-anything.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── scroll-down.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── settings.svg │ │ │ │ │ ├── show-as-tree.svg │ │ │ │ │ ├── show.svg │ │ │ │ │ ├── soft-wrap.svg │ │ │ │ │ ├── sort-alphabetically.svg │ │ │ │ │ ├── sort-by-duration.svg │ │ │ │ │ ├── sort-by-type.svg │ │ │ │ │ ├── sort-by-usage.svg │ │ │ │ │ ├── sort-by-visibility.svg │ │ │ │ │ ├── sort-by.svg │ │ │ │ │ ├── split-horizontally.svg │ │ │ │ │ ├── split-vertically.svg │ │ │ │ │ ├── undo.svg │ │ │ │ │ ├── unlocked.svg │ │ │ │ │ ├── up.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ └── vcs.svg │ │ │ │ ├── other │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── uk.svg │ │ │ │ │ └── us.svg │ │ │ │ └── tool-windows │ │ │ │ │ ├── ant.svg │ │ │ │ │ ├── aws-glue.svg │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ ├── build-server-protocol.svg │ │ │ │ │ ├── build.svg │ │ │ │ │ ├── c-make-tool-window.svg │ │ │ │ │ ├── changes.svg │ │ │ │ │ ├── commit.svg │ │ │ │ │ ├── concurrency-diagram-toolwindow.svg │ │ │ │ │ ├── coverage.svg │ │ │ │ │ ├── cwm-access.svg │ │ │ │ │ ├── cwm-users.svg │ │ │ │ │ ├── database-changes.svg │ │ │ │ │ ├── dataproc-tool-window.svg │ │ │ │ │ ├── dbms.svg │ │ │ │ │ ├── debug.svg │ │ │ │ │ ├── dependencies.svg │ │ │ │ │ ├── documentation.svg │ │ │ │ │ ├── donate.svg │ │ │ │ │ ├── endpoints.svg │ │ │ │ │ ├── exception-analyzer.svg │ │ │ │ │ ├── find-external-usages.svg │ │ │ │ │ ├── find.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── gradle.svg │ │ │ │ │ ├── hierarchy.svg │ │ │ │ │ ├── hive.svg │ │ │ │ │ ├── jupyter-tool-window.svg │ │ │ │ │ ├── kafka.svg │ │ │ │ │ ├── kotlin-tool-window.svg │ │ │ │ │ ├── learn.svg │ │ │ │ │ ├── makefile-tool-window.svg │ │ │ │ │ ├── maven.svg │ │ │ │ │ ├── messages.svg │ │ │ │ │ ├── new-u-i.svg │ │ │ │ │ ├── notifications.svg │ │ │ │ │ ├── npm.svg │ │ │ │ │ ├── package-manager.svg │ │ │ │ │ ├── problems.svg │ │ │ │ │ ├── profiler.svg │ │ │ │ │ ├── project.svg │ │ │ │ │ ├── pull-requests.svg │ │ │ │ │ ├── python-console-tool-window.svg │ │ │ │ │ ├── repositories.svg │ │ │ │ │ ├── run.svg │ │ │ │ │ ├── rust.svg │ │ │ │ │ ├── sbt-icon.svg │ │ │ │ │ ├── sbt-shell.svg │ │ │ │ │ ├── sci-view.svg │ │ │ │ │ ├── services.svg │ │ │ │ │ ├── setting-sync.svg │ │ │ │ │ ├── space-tool-window.svg │ │ │ │ │ ├── spring.svg │ │ │ │ │ ├── structure.svg │ │ │ │ │ ├── task.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── todo.svg │ │ │ │ │ ├── transfer.svg │ │ │ │ │ ├── unknown.svg │ │ │ │ │ ├── vcs.svg │ │ │ │ │ ├── web-locator.svg │ │ │ │ │ ├── web-server.svg │ │ │ │ │ ├── web.svg │ │ │ │ │ ├── writerside-preview.svg │ │ │ │ │ └── writerside.svg │ │ │ ├── icon.tsx │ │ │ ├── index.ts │ │ │ └── sprite.gen.ts │ │ │ ├── icons-showcase │ │ │ ├── icons-showcase.module.css │ │ │ └── icons-showcase.tsx │ │ │ ├── index.css │ │ │ ├── informer.tsx │ │ │ ├── input.tsx │ │ │ ├── shared.ts │ │ │ └── tabs.tsx │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.ts │ └── vite-vue │ ├── .eslintrc.cjs │ ├── index.html │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ ├── favicon.ico │ └── sprites │ │ ├── common.5213988b.svg │ │ └── tool.73d0574a.svg │ ├── src │ ├── app │ │ ├── app.vue │ │ └── main.ts │ └── shared │ │ └── ui │ │ ├── icon │ │ ├── assets │ │ │ ├── common │ │ │ │ ├── add.svg │ │ │ │ ├── autoscroll-from-source.svg │ │ │ │ ├── checkmark.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up-large.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── close-small-hovered.svg │ │ │ │ ├── close-small.svg │ │ │ │ ├── close.svg │ │ │ │ ├── collapse-all.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── delete.svg │ │ │ │ ├── double-color.svg │ │ │ │ ├── down.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── exit.svg │ │ │ │ ├── expand-all.svg │ │ │ │ ├── export.svg │ │ │ │ ├── external-link.svg │ │ │ │ ├── favourite.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── groups.svg │ │ │ │ ├── help.svg │ │ │ │ ├── hide.svg │ │ │ │ ├── ide-update.svg │ │ │ │ ├── layout.svg │ │ │ │ └── left.svg │ │ │ └── tool │ │ │ │ ├── download.svg │ │ │ │ ├── history.svg │ │ │ │ └── import.svg │ │ ├── icon.vue │ │ └── sprite.gen.ts │ │ └── index.css │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.ts ├── commitlint.config.js ├── constraints.pro ├── libs ├── autobuild │ ├── .eslintrc.cjs │ ├── CHANGELOG.md │ ├── README.md │ ├── bin.mjs │ ├── examples │ │ ├── advanced-mixed │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ ├── button │ │ │ │ │ │ ├── button.module.scss │ │ │ │ │ │ ├── button.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── input │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── input.module.scss │ │ │ │ │ │ └── input.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── styles │ │ │ │ │ ├── global.scss │ │ │ │ │ └── shared.scss │ │ │ │ └── utils │ │ │ │ │ └── clsx.ts │ │ │ └── tsconfig.json │ │ ├── basic-css-sass │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── element.module.scss │ │ │ │ ├── element.ts │ │ │ │ ├── index.ts │ │ │ │ └── styles │ │ │ │ │ ├── global.scss │ │ │ │ │ └── shared.scss │ │ │ └── tsconfig.json │ │ ├── basic-css │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── dynamic.global.css │ │ │ │ ├── dynamic.module.css │ │ │ │ ├── dynamic.ts │ │ │ │ ├── element.module.css │ │ │ │ ├── element.ts │ │ │ │ ├── global.css │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── basic-js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── es-module.mjs │ │ │ │ └── index.js │ │ ├── basic-ts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── feat-ts-without-definitions │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ ├── multiple-ts-glob │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ ├── internal │ │ │ │ │ ├── calc.ts │ │ │ │ │ └── clsx.ts │ │ │ │ └── modules │ │ │ │ │ ├── bar │ │ │ │ │ ├── index.ts │ │ │ │ │ └── util.ts │ │ │ │ │ ├── baz.ts │ │ │ │ │ └── foo │ │ │ │ │ └── index.ts │ │ │ └── tsconfig.json │ │ └── multiple-ts │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── second-entry.ts │ │ │ └── shared.ts │ │ │ └── tsconfig.json │ ├── index.d.ts │ ├── package.json │ ├── src │ │ ├── core │ │ │ ├── exports.ts │ │ │ ├── flatten-dist.ts │ │ │ ├── scan-package-json.ts │ │ │ └── scan-project.ts │ │ ├── index.ts │ │ ├── rollup │ │ │ ├── create-rollup-config.ts │ │ │ ├── rollup-plugin-bundle-size.ts │ │ │ └── rollup-plugin-swc.ts │ │ ├── tasks │ │ │ ├── build.ts │ │ │ └── watch.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── logger.ts │ │ │ ├── resolve-import-path.ts │ │ │ └── shared.ts │ ├── test │ │ ├── examples.test.ts │ │ ├── flatten-dist.test.ts │ │ └── lib │ │ │ └── build-example.ts │ ├── tsconfig.json │ └── vite.config.ts ├── codegen │ ├── .eslintrc.cjs │ ├── CHANGELOG.md │ ├── README.md │ ├── examples │ │ └── react-hook │ │ │ ├── generate.ts │ │ │ ├── generated │ │ │ ├── index.ts │ │ │ ├── use-item-description │ │ │ │ ├── index.ts │ │ │ │ └── use-item-description.ts │ │ │ └── use-item-id │ │ │ │ ├── index.ts │ │ │ │ └── use-item-id.ts │ │ │ ├── package.json │ │ │ └── template │ │ │ ├── index.ts.ejs │ │ │ └── use-[name] │ │ │ ├── index.ts.ejs │ │ │ └── use-[name].ts.ejs │ ├── package.json │ ├── scripts │ │ ├── add-example.mjs │ │ └── example-template │ │ │ ├── generate.mjs │ │ │ ├── package.json │ │ │ └── template │ │ │ └── _keep_.[name].ts.ejs │ ├── src │ │ ├── index.ts │ │ └── template │ │ │ ├── fixture │ │ │ ├── [dot]gitignore │ │ │ ├── [name].[value].untouched.ts.tmpl._keep_ │ │ │ ├── [name] │ │ │ │ └── [name].[value].[name].ts.ejs │ │ │ ├── _keep_.[name].prefixed-untouched.ts.ejs │ │ │ ├── raw.txt │ │ │ └── template.json.ejs │ │ │ ├── generate-files.test.ts │ │ │ └── generate-files.ts │ ├── tests │ │ └── examples.test.ts │ ├── tsconfig.json │ └── vite.config.ts ├── colors │ ├── .eslintrc.cjs │ ├── CHANGELOG.md │ ├── README.md │ ├── docs │ │ └── demo.png │ ├── package.json │ ├── run.js │ ├── src │ │ ├── create-colors.test.ts │ │ ├── create-colors.ts │ │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts ├── figma │ ├── .eslintrc.cjs │ ├── CHANGELOG.md │ ├── README.md │ ├── bin.mjs │ ├── docs │ │ └── export-result-example.png │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── create-figma-api.test.ts.snap │ │ │ ├── create-figma-client.test-d.ts │ │ │ ├── create-figma-client.test.ts │ │ │ ├── create-nodes-graph.test.ts │ │ │ ├── export-file.test.ts │ │ │ ├── export.low-level-api.test.ts │ │ │ ├── get-file-simple.mock.json │ │ │ ├── get-file-weather.mock.json │ │ │ ├── testing-utils.ts │ │ │ └── traverse-graph.test.ts │ │ ├── cli.ts │ │ ├── config.ts │ │ ├── core │ │ │ ├── create-figma-api.ts │ │ │ ├── figma-api.h.ts │ │ │ ├── figma.h.ts │ │ │ └── index.ts │ │ ├── create-figma-client.ts │ │ ├── export │ │ │ ├── create-export-context.ts │ │ │ ├── export-file-assets.ts │ │ │ ├── export-published-components.ts │ │ │ ├── images │ │ │ │ ├── download-exported-assets.ts │ │ │ │ ├── optimize-downloaded-assets.ts │ │ │ │ ├── resolve-exported-assets.ts │ │ │ │ └── write-downloaded-assets.ts │ │ │ └── index.ts │ │ ├── graph │ │ │ ├── collect-nodes.ts │ │ │ ├── create-nodes-graph.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── shared.ts │ │ └── utils.ts │ ├── tsconfig.json │ └── vite.config.ts ├── fs │ ├── .eslintrc.cjs │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── ensure.test.ts │ │ │ ├── hash.test.ts │ │ │ ├── read.test.ts │ │ │ └── scan.test.ts │ │ ├── checks.ts │ │ ├── ensure.ts │ │ ├── hash.ts │ │ ├── index.ts │ │ ├── json.ts │ │ ├── read.ts │ │ └── scan.ts │ ├── tsconfig.json │ └── vite.config.ts ├── glob │ ├── .eslintrc.cjs │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── escape.test.ts │ │ │ ├── extract.test.ts │ │ │ ├── glob.bench.ts │ │ │ ├── glob.test-d.ts │ │ │ ├── is-static-glob.test.ts │ │ │ ├── match.test.ts │ │ │ ├── walk.test.ts │ │ │ └── zeptomatch-adapted.test.ts │ │ ├── extract.ts │ │ ├── index.ts │ │ ├── match.ts │ │ ├── parsers │ │ │ ├── convert.ts │ │ │ └── normalize.ts │ │ ├── shared.ts │ │ └── walk.ts │ ├── tsconfig.json │ └── vite.config.ts ├── internal │ ├── .eslintrc.cjs │ ├── README.md │ ├── package.json │ ├── src │ │ ├── cache │ │ │ ├── cache.ts │ │ │ ├── context.ts │ │ │ └── hasher.ts │ │ ├── errors.ts │ │ ├── hash.ts │ │ ├── intl.ts │ │ ├── log.ts │ │ ├── npm.ts │ │ ├── params.ts │ │ ├── svgo.ts │ │ ├── tasks.ts │ │ ├── vfs.ts │ │ └── zod.ts │ ├── tsconfig.json │ └── vite.config.ts ├── log │ ├── .eslintrc.cjs │ ├── CHANGELOG.md │ ├── README.md │ ├── bench │ │ ├── build-entries │ │ │ ├── bunyan.ts │ │ │ ├── loglevel.ts │ │ │ ├── neodx.ts │ │ │ └── pino.ts │ │ ├── compare-bundle.ts │ │ ├── compare-output.ts │ │ ├── compare-perf.bench.ts │ │ ├── neodx-log-perf.bench.ts │ │ └── shared.ts │ ├── docs │ │ ├── aliases.png │ │ ├── compare-output.png │ │ ├── example-express-logs.png │ │ ├── example-http-logs.png │ │ ├── example-koa-logs.png │ │ ├── output-levels.png │ │ └── preview-intro.png │ ├── examples │ │ ├── big-list-of-logs.ts │ │ ├── json.ts │ │ ├── pretty-errors-files │ │ │ ├── app.ts │ │ │ ├── controller.ts │ │ │ ├── repo │ │ │ │ └── products.ts │ │ │ └── services │ │ │ │ └── products.ts │ │ ├── pretty-errors.ts │ │ └── with-express │ │ │ └── app.ts │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── errors.test.ts │ │ │ ├── http.test-d.ts │ │ │ ├── logger.test-d.ts │ │ │ ├── logger.test.ts │ │ │ ├── node-pretty-stream.test.ts │ │ │ ├── printf.test.ts │ │ │ ├── serialize-json.test.ts │ │ │ ├── testing-utils.ts │ │ │ └── utils.test.ts │ │ ├── core │ │ │ ├── create-logger-factory.ts │ │ │ ├── shared.ts │ │ │ └── types.ts │ │ ├── express.ts │ │ ├── http │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── index.ts │ │ ├── koa.ts │ │ ├── node │ │ │ ├── error │ │ │ │ ├── index.ts │ │ │ │ ├── print-code-frame.ts │ │ │ │ ├── print-pretty-error.ts │ │ │ │ ├── serialize-error.ts │ │ │ │ ├── source-map.ts │ │ │ │ └── stack-trace.ts │ │ │ ├── index.ts │ │ │ ├── json.ts │ │ │ ├── pretty.ts │ │ │ ├── serializers.ts │ │ │ └── shared.ts │ │ └── utils │ │ │ ├── create-auto-logger-factory.ts │ │ │ ├── index.ts │ │ │ ├── printf.ts │ │ │ ├── read-arguments.ts │ │ │ └── serialize-json.ts │ ├── tsconfig.json │ └── vite.config.ts ├── pkg-misc │ ├── .eslintrc.cjs │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── package-json.test.ts │ │ │ └── prettier.test.ts │ │ ├── index.ts │ │ ├── package-json.ts │ │ ├── prettier.ts │ │ └── semver.ts │ ├── tsconfig.json │ └── vite.config.ts ├── std │ ├── .eslintrc.cjs │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── async.test.ts │ │ │ ├── chunking.test.ts │ │ │ ├── concurrent.test.ts │ │ │ ├── deduplicate.test.ts │ │ │ ├── filter.test-d.ts │ │ │ ├── merge.test.ts │ │ │ ├── object.test.ts │ │ │ ├── sort.test.ts │ │ │ ├── testing-utils.ts │ │ │ ├── to-case.test.ts │ │ │ ├── uniq.test.ts │ │ │ └── url.test.ts │ │ ├── array │ │ │ ├── chunking.ts │ │ │ ├── create.ts │ │ │ ├── difference.ts │ │ │ ├── filter.ts │ │ │ ├── group.ts │ │ │ ├── index.ts │ │ │ ├── shared.ts │ │ │ └── uniq.ts │ │ ├── async │ │ │ ├── concurrent.ts │ │ │ ├── deduplicate.ts │ │ │ ├── index.ts │ │ │ └── reduce.ts │ │ ├── debounce.ts │ │ ├── guards.ts │ │ ├── index.ts │ │ ├── invariant.ts │ │ ├── math.ts │ │ ├── memoize.ts │ │ ├── merge.ts │ │ ├── object │ │ │ ├── create.ts │ │ │ ├── equals.ts │ │ │ ├── filter.ts │ │ │ ├── index.ts │ │ │ ├── map.ts │ │ │ └── sort.ts │ │ ├── shared.ts │ │ ├── string.ts │ │ ├── to-case.ts │ │ └── url.ts │ ├── tsconfig.json │ └── vite.config.ts ├── svg │ ├── .eslintrc.cjs │ ├── CHANGELOG.md │ ├── README.md │ ├── bin.mjs │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── __examples__ │ │ │ │ ├── colors-advanced │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── close.svg │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ ├── favourite.svg │ │ │ │ │ │ ├── flags │ │ │ │ │ │ │ ├── ac.svg │ │ │ │ │ │ │ ├── ad.svg │ │ │ │ │ │ │ ├── ae.svg │ │ │ │ │ │ │ └── af.svg │ │ │ │ │ │ ├── folder-colored.svg │ │ │ │ │ │ ├── logos │ │ │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ │ │ └── twitter.svg │ │ │ │ │ │ └── sort-by-visibility.svg │ │ │ │ │ └── generated │ │ │ │ │ │ ├── logos.svg │ │ │ │ │ │ ├── sprite-info.ts │ │ │ │ │ │ └── sprite.svg │ │ │ │ ├── colors │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── custom.svg │ │ │ │ │ │ ├── fill.svg │ │ │ │ │ │ ├── mixed.svg │ │ │ │ │ │ └── stroke.svg │ │ │ │ │ └── generated │ │ │ │ │ │ ├── sprite-info.ts │ │ │ │ │ │ └── sprite.svg │ │ │ │ ├── groups-with-root │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── close.svg │ │ │ │ │ │ │ └── favourite.svg │ │ │ │ │ │ └── format │ │ │ │ │ │ │ ├── align-left.svg │ │ │ │ │ │ │ └── tag.svg │ │ │ │ │ └── generated │ │ │ │ │ │ ├── common.svg │ │ │ │ │ │ ├── format.svg │ │ │ │ │ │ └── sprite-info.ts │ │ │ │ ├── groups-without-root │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── close.svg │ │ │ │ │ │ │ └── favourite.svg │ │ │ │ │ │ └── format │ │ │ │ │ │ │ ├── align-left.svg │ │ │ │ │ │ │ └── tag.svg │ │ │ │ │ └── generated │ │ │ │ │ │ ├── common.svg │ │ │ │ │ │ ├── format.svg │ │ │ │ │ │ └── sprite-info.ts │ │ │ │ ├── metadata │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── close.svg │ │ │ │ │ │ │ └── favourite.svg │ │ │ │ │ │ └── format │ │ │ │ │ │ │ ├── align-left.svg │ │ │ │ │ │ │ └── tag.svg │ │ │ │ │ └── generated │ │ │ │ │ │ ├── common.fef39f3f.svg │ │ │ │ │ │ ├── format.d272be3f.svg │ │ │ │ │ │ └── meta.ts │ │ │ │ ├── react │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── close.svg │ │ │ │ │ │ │ └── favourite.svg │ │ │ │ │ │ └── format │ │ │ │ │ │ │ ├── align-left.svg │ │ │ │ │ │ │ └── tag.svg │ │ │ │ │ ├── example.tsx │ │ │ │ │ ├── generated │ │ │ │ │ │ ├── common.svg │ │ │ │ │ │ ├── format.svg │ │ │ │ │ │ └── sprite-info.ts │ │ │ │ │ └── icon.tsx │ │ │ │ └── simple │ │ │ │ │ ├── assets │ │ │ │ │ ├── arrow-drop-down.svg │ │ │ │ │ └── arrow-drop-up.svg │ │ │ │ │ └── generated │ │ │ │ │ ├── sprite-info.ts │ │ │ │ │ └── sprite.svg │ │ │ ├── __snapshots__ │ │ │ │ ├── builder.test.ts.snap │ │ │ │ └── examples.test.ts.snap │ │ │ ├── __stubs__ │ │ │ │ ├── colors │ │ │ │ │ ├── hex-a-fill-alt.svg │ │ │ │ │ ├── hex-a-fill.svg │ │ │ │ │ ├── hex-a-stroke.svg │ │ │ │ │ ├── hex-b-fill.svg │ │ │ │ │ ├── hex-b-stroke.svg │ │ │ │ │ ├── simple-hex-lower.svg │ │ │ │ │ ├── simple-hex-mixed-with-red.svg │ │ │ │ │ ├── simple-hex-short.svg │ │ │ │ │ ├── simple-hex-upper.svg │ │ │ │ │ ├── simple-keyword.svg │ │ │ │ │ └── simple-rgb.svg │ │ │ │ ├── common │ │ │ │ │ ├── add.svg │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── delete.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── exit.svg │ │ │ │ │ ├── export.svg │ │ │ │ │ └── help.svg │ │ │ │ ├── flags │ │ │ │ │ ├── au.svg │ │ │ │ │ ├── uk.svg │ │ │ │ │ └── us.svg │ │ │ │ ├── mask │ │ │ │ │ ├── flag-uk.svg │ │ │ │ │ └── flag-us.svg │ │ │ │ └── references │ │ │ │ │ ├── animated-mask.svg │ │ │ │ │ ├── animated-pattern.svg │ │ │ │ │ ├── animated-symbol.svg │ │ │ │ │ ├── animated.svg │ │ │ │ │ ├── combined-filter.svg │ │ │ │ │ ├── dynamic-filter.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── global-mask.svg │ │ │ │ │ ├── linear-gradient.svg │ │ │ │ │ ├── mask.svg │ │ │ │ │ ├── mixed-animation-pattern.svg │ │ │ │ │ ├── mixed-animation.svg │ │ │ │ │ ├── mixed-gradient.svg │ │ │ │ │ ├── mixed-mask.svg │ │ │ │ │ ├── mixed.svg │ │ │ │ │ ├── pattern-mask.svg │ │ │ │ │ ├── pattern.svg │ │ │ │ │ ├── radial-gradient.svg │ │ │ │ │ ├── text-clip.svg │ │ │ │ │ └── text-path.svg │ │ │ ├── builder.test.ts │ │ │ ├── examples.test.ts │ │ │ ├── parser.test.ts │ │ │ ├── runtime.test-d.ts │ │ │ ├── testing-utils.ts │ │ │ └── watcher.test.ts │ │ ├── cli.ts │ │ ├── core │ │ │ ├── builder.ts │ │ │ ├── cleanup.ts │ │ │ ├── collector.ts │ │ │ ├── inlining.ts │ │ │ ├── metadata-runtime-template.ts │ │ │ ├── metadata.ts │ │ │ ├── optimizer.ts │ │ │ ├── parser.ts │ │ │ ├── reset-colors.ts │ │ │ └── shared.ts │ │ ├── esbuild.ts │ │ ├── index.ts │ │ ├── rollup.ts │ │ ├── rspack.ts │ │ ├── tasks │ │ │ ├── build-sprites.ts │ │ │ └── watch-sprites.ts │ │ ├── unplugin.ts │ │ ├── vite.ts │ │ └── webpack.ts │ ├── tsconfig.json │ └── vite.config.ts └── vfs │ ├── .eslintrc.cjs │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ ├── __tests__ │ │ ├── backends.test.ts │ │ ├── base-vfs.test.ts │ │ ├── eslint.test.ts │ │ ├── glob.test.ts │ │ ├── prettier.test.ts │ │ ├── scan.test.ts │ │ ├── use-cases.test.ts │ │ └── vfs.test-d.ts │ ├── backend │ │ ├── create-in-memory-backend.ts │ │ ├── create-node-fs-backend.ts │ │ ├── create-readonly-backend.ts │ │ ├── index.ts │ │ └── shared.ts │ ├── core │ │ ├── context.ts │ │ ├── create-base-vfs.ts │ │ ├── file-api.ts │ │ ├── operations.ts │ │ ├── scopes.ts │ │ └── types.ts │ ├── create-auto-vfs.ts │ ├── create-vfs-plugin.ts │ ├── create-vfs.ts │ ├── index.ts │ ├── plugins │ │ ├── eslint.ts │ │ ├── glob.ts │ │ ├── json.ts │ │ ├── package-json.ts │ │ ├── prettier.ts │ │ └── scan.ts │ └── testing.ts │ ├── tsconfig.json │ └── vite.config.ts ├── nx.json ├── package.json ├── prompts └── writing-documentation.md ├── tools └── scripts │ ├── .eslintrc.cjs │ ├── README.md │ ├── bin.mjs │ ├── package.json │ └── templates │ ├── example │ ├── .eslintrc.cjs.tmpl │ ├── index.html │ ├── package.json │ ├── src │ │ └── app │ │ │ └── client.ts │ ├── tsconfig.json.tmpl │ └── vite.config.ts │ └── lib │ ├── .eslintrc.cjs.tmpl │ ├── README.md │ ├── package.json │ ├── src │ └── index.ts │ ├── tsconfig.json.tmpl │ └── vite.config.ts ├── tsconfig.base.json └── yarn.lock /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.eslintignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn commitlint --edit $1 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.prettierrc.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.3.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.yarn/releases/yarn-4.3.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/README.md -------------------------------------------------------------------------------- /apps/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/.gitignore -------------------------------------------------------------------------------- /apps/docs/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/.vitepress/config.ts -------------------------------------------------------------------------------- /apps/docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /apps/docs/.vitepress/theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/.vitepress/theme/style.css -------------------------------------------------------------------------------- /apps/docs/README.md: -------------------------------------------------------------------------------- 1 | # docs 2 | -------------------------------------------------------------------------------- /apps/docs/figma/api/export/export-file-assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/api/export/export-file-assets.md -------------------------------------------------------------------------------- /apps/docs/figma/api/export/export-published-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/api/export/export-published-components.md -------------------------------------------------------------------------------- /apps/docs/figma/api/export/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/api/export/index.md -------------------------------------------------------------------------------- /apps/docs/figma/api/figma-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/api/figma-api.md -------------------------------------------------------------------------------- /apps/docs/figma/api/figma-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/api/figma-client.md -------------------------------------------------------------------------------- /apps/docs/figma/api/graph/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/docs/figma/api/low-level/collect-nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/api/low-level/collect-nodes.md -------------------------------------------------------------------------------- /apps/docs/figma/api/low-level/create-export-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/api/low-level/create-export-context.md -------------------------------------------------------------------------------- /apps/docs/figma/api/low-level/create-file-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/api/low-level/create-file-graph.md -------------------------------------------------------------------------------- /apps/docs/figma/api/low-level/download-exported-assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/api/low-level/download-exported-assets.md -------------------------------------------------------------------------------- /apps/docs/figma/api/low-level/resolve-exported-assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/api/low-level/resolve-exported-assets.md -------------------------------------------------------------------------------- /apps/docs/figma/api/low-level/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/api/low-level/utils.md -------------------------------------------------------------------------------- /apps/docs/figma/api/low-level/write-downloaded-assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/api/low-level/write-downloaded-assets.md -------------------------------------------------------------------------------- /apps/docs/figma/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/index.md -------------------------------------------------------------------------------- /apps/docs/figma/motivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/motivation.md -------------------------------------------------------------------------------- /apps/docs/figma/recipes/export-file-assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/recipes/export-file-assets.md -------------------------------------------------------------------------------- /apps/docs/figma/recipes/export-published-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/recipes/export-published-components.md -------------------------------------------------------------------------------- /apps/docs/figma/recipes/traverse-figma-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/recipes/traverse-figma-file.md -------------------------------------------------------------------------------- /apps/docs/figma/using-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/figma/using-client.md -------------------------------------------------------------------------------- /apps/docs/glob/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/glob/api.md -------------------------------------------------------------------------------- /apps/docs/glob/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/glob/index.md -------------------------------------------------------------------------------- /apps/docs/glob/writing-your-glob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/glob/writing-your-glob.md -------------------------------------------------------------------------------- /apps/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/index.md -------------------------------------------------------------------------------- /apps/docs/log/api/create-logger-factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/api/create-logger-factory.md -------------------------------------------------------------------------------- /apps/docs/log/api/create-logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/api/create-logger.md -------------------------------------------------------------------------------- /apps/docs/log/api/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/api/http.md -------------------------------------------------------------------------------- /apps/docs/log/api/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/api/logger.md -------------------------------------------------------------------------------- /apps/docs/log/api/pretty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/api/pretty.md -------------------------------------------------------------------------------- /apps/docs/log/api/printf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/api/printf.md -------------------------------------------------------------------------------- /apps/docs/log/api/read-arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/api/read-arguments.md -------------------------------------------------------------------------------- /apps/docs/log/building-your-own-logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/building-your-own-logger.md -------------------------------------------------------------------------------- /apps/docs/log/fork-and-child.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/fork-and-child.md -------------------------------------------------------------------------------- /apps/docs/log/formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/formatting.md -------------------------------------------------------------------------------- /apps/docs/log/frameworks/express.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/frameworks/express.md -------------------------------------------------------------------------------- /apps/docs/log/frameworks/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/frameworks/http.md -------------------------------------------------------------------------------- /apps/docs/log/frameworks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/frameworks/index.md -------------------------------------------------------------------------------- /apps/docs/log/frameworks/koa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/frameworks/koa.md -------------------------------------------------------------------------------- /apps/docs/log/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/index.md -------------------------------------------------------------------------------- /apps/docs/log/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/metadata.md -------------------------------------------------------------------------------- /apps/docs/log/motivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/motivation.md -------------------------------------------------------------------------------- /apps/docs/log/targets/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/targets/json.md -------------------------------------------------------------------------------- /apps/docs/log/targets/pretty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/log/targets/pretty.md -------------------------------------------------------------------------------- /apps/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/package.json -------------------------------------------------------------------------------- /apps/docs/public/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/android-chrome-144x144.png -------------------------------------------------------------------------------- /apps/docs/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /apps/docs/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/docs/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/browserconfig.xml -------------------------------------------------------------------------------- /apps/docs/public/crazy-svg-mix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/crazy-svg-mix.png -------------------------------------------------------------------------------- /apps/docs/public/export-file-assets/get-figma-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/export-file-assets/get-figma-token.png -------------------------------------------------------------------------------- /apps/docs/public/export-file-assets/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/export-file-assets/output.png -------------------------------------------------------------------------------- /apps/docs/public/export-file-assets/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/export-file-assets/source.png -------------------------------------------------------------------------------- /apps/docs/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/favicon-16x16.png -------------------------------------------------------------------------------- /apps/docs/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/favicon-32x32.png -------------------------------------------------------------------------------- /apps/docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/favicon.ico -------------------------------------------------------------------------------- /apps/docs/public/log/example-express-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/log/example-express-logs.png -------------------------------------------------------------------------------- /apps/docs/public/log/example-http-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/log/example-http-logs.png -------------------------------------------------------------------------------- /apps/docs/public/log/example-koa-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/log/example-koa-logs.png -------------------------------------------------------------------------------- /apps/docs/public/log/pretty-errors-cause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/log/pretty-errors-cause.png -------------------------------------------------------------------------------- /apps/docs/public/log/pretty-errors-chained.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/log/pretty-errors-chained.png -------------------------------------------------------------------------------- /apps/docs/public/log/pretty-errors-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/log/pretty-errors-off.png -------------------------------------------------------------------------------- /apps/docs/public/log/pretty-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/log/pretty-target.png -------------------------------------------------------------------------------- /apps/docs/public/log/preview-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/log/preview-intro.png -------------------------------------------------------------------------------- /apps/docs/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/logo.png -------------------------------------------------------------------------------- /apps/docs/public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/mstile-150x150.png -------------------------------------------------------------------------------- /apps/docs/public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /apps/docs/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/site.webmanifest -------------------------------------------------------------------------------- /apps/docs/public/svg/text-alignment/issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/svg/text-alignment/issue.png -------------------------------------------------------------------------------- /apps/docs/public/svg/text-alignment/layout-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/svg/text-alignment/layout-fix.png -------------------------------------------------------------------------------- /apps/docs/public/svg/text-alignment/sandbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/svg/text-alignment/sandbox.png -------------------------------------------------------------------------------- /apps/docs/public/svg/text-alignment/typeface-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/svg/text-alignment/typeface-layout.png -------------------------------------------------------------------------------- /apps/docs/public/svg/text-alignment/typefaces-variants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/svg/text-alignment/typefaces-variants.png -------------------------------------------------------------------------------- /apps/docs/public/vfs/example-vfs-types-mismatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/vfs/example-vfs-types-mismatch.png -------------------------------------------------------------------------------- /apps/docs/public/wrong-svg-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/public/wrong-svg-size.png -------------------------------------------------------------------------------- /apps/docs/svg/api/builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/api/builder.md -------------------------------------------------------------------------------- /apps/docs/svg/api/features/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/api/features/metadata.md -------------------------------------------------------------------------------- /apps/docs/svg/api/features/optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/api/features/optimization.md -------------------------------------------------------------------------------- /apps/docs/svg/api/features/reset-colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/api/features/reset-colors.md -------------------------------------------------------------------------------- /apps/docs/svg/api/features/sprite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/api/features/sprite.md -------------------------------------------------------------------------------- /apps/docs/svg/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/api/index.md -------------------------------------------------------------------------------- /apps/docs/svg/cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/cleanup.md -------------------------------------------------------------------------------- /apps/docs/svg/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/cli.md -------------------------------------------------------------------------------- /apps/docs/svg/colors-reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/colors-reset.md -------------------------------------------------------------------------------- /apps/docs/svg/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/faq.md -------------------------------------------------------------------------------- /apps/docs/svg/group-and-hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/group-and-hash.md -------------------------------------------------------------------------------- /apps/docs/svg/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/index.md -------------------------------------------------------------------------------- /apps/docs/svg/inlining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/inlining.md -------------------------------------------------------------------------------- /apps/docs/svg/integration/figma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/integration/figma.md -------------------------------------------------------------------------------- /apps/docs/svg/integration/heroicons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/integration/heroicons.md -------------------------------------------------------------------------------- /apps/docs/svg/integration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/integration/index.md -------------------------------------------------------------------------------- /apps/docs/svg/integration/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/integration/react.md -------------------------------------------------------------------------------- /apps/docs/svg/integration/solid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/integration/solid.md -------------------------------------------------------------------------------- /apps/docs/svg/integration/svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/integration/svelte.md -------------------------------------------------------------------------------- /apps/docs/svg/integration/vue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/integration/vue.md -------------------------------------------------------------------------------- /apps/docs/svg/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/metadata.md -------------------------------------------------------------------------------- /apps/docs/svg/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/migration.md -------------------------------------------------------------------------------- /apps/docs/svg/motivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/motivation.md -------------------------------------------------------------------------------- /apps/docs/svg/multicolored.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/multicolored.md -------------------------------------------------------------------------------- /apps/docs/svg/optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/optimization.md -------------------------------------------------------------------------------- /apps/docs/svg/recipes/cdn-compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/recipes/cdn-compatibility.md -------------------------------------------------------------------------------- /apps/docs/svg/recipes/text-alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/recipes/text-alignment.md -------------------------------------------------------------------------------- /apps/docs/svg/recipes/tokens-naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/recipes/tokens-naming.md -------------------------------------------------------------------------------- /apps/docs/svg/setup/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/setup/index.md -------------------------------------------------------------------------------- /apps/docs/svg/setup/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/setup/next.md -------------------------------------------------------------------------------- /apps/docs/svg/setup/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/setup/node.md -------------------------------------------------------------------------------- /apps/docs/svg/setup/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/setup/other.md -------------------------------------------------------------------------------- /apps/docs/svg/setup/storybook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/setup/storybook.md -------------------------------------------------------------------------------- /apps/docs/svg/setup/vite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/setup/vite.md -------------------------------------------------------------------------------- /apps/docs/svg/setup/webpack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/setup/webpack.md -------------------------------------------------------------------------------- /apps/docs/svg/shared/no-built-in-component-disclaimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/shared/no-built-in-component-disclaimer.md -------------------------------------------------------------------------------- /apps/docs/svg/shared/node-api-snippet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/shared/node-api-snippet.md -------------------------------------------------------------------------------- /apps/docs/svg/shared/preview-tailwind-styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/shared/preview-tailwind-styles.md -------------------------------------------------------------------------------- /apps/docs/svg/shared/preview-vite-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/shared/preview-vite-config.md -------------------------------------------------------------------------------- /apps/docs/svg/writing-icon-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/svg/writing-icon-component.md -------------------------------------------------------------------------------- /apps/docs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/tailwind.config.js -------------------------------------------------------------------------------- /apps/docs/vfs/api/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/api/backend.md -------------------------------------------------------------------------------- /apps/docs/vfs/api/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/api/common.md -------------------------------------------------------------------------------- /apps/docs/vfs/api/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/api/context.md -------------------------------------------------------------------------------- /apps/docs/vfs/api/create-base-vfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/api/create-base-vfs.md -------------------------------------------------------------------------------- /apps/docs/vfs/api/create-vfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/api/create-vfs.md -------------------------------------------------------------------------------- /apps/docs/vfs/api/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/api/plugins.md -------------------------------------------------------------------------------- /apps/docs/vfs/extending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/extending.md -------------------------------------------------------------------------------- /apps/docs/vfs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/index.md -------------------------------------------------------------------------------- /apps/docs/vfs/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/limitations.md -------------------------------------------------------------------------------- /apps/docs/vfs/plugins/eslint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/plugins/eslint.md -------------------------------------------------------------------------------- /apps/docs/vfs/plugins/glob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/plugins/glob.md -------------------------------------------------------------------------------- /apps/docs/vfs/plugins/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/plugins/json.md -------------------------------------------------------------------------------- /apps/docs/vfs/plugins/package-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/plugins/package-json.md -------------------------------------------------------------------------------- /apps/docs/vfs/plugins/prettier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/plugins/prettier.md -------------------------------------------------------------------------------- /apps/docs/vfs/plugins/scan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/docs/vfs/plugins/scan.md -------------------------------------------------------------------------------- /apps/e2e/svg/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/e2e/svg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/README.md -------------------------------------------------------------------------------- /apps/e2e/svg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/index.html -------------------------------------------------------------------------------- /apps/e2e/svg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/package.json -------------------------------------------------------------------------------- /apps/e2e/svg/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/playwright.config.ts -------------------------------------------------------------------------------- /apps/e2e/svg/playwright.setup.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/playwright.setup.mjs -------------------------------------------------------------------------------- /apps/e2e/svg/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/postcss.config.cjs -------------------------------------------------------------------------------- /apps/e2e/svg/public/sprites/inline-all-extract.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/public/sprites/inline-all-extract.svg -------------------------------------------------------------------------------- /apps/e2e/svg/public/sprites/inline-auto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/public/sprites/inline-auto.svg -------------------------------------------------------------------------------- /apps/e2e/svg/public/sprites/no-inline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/public/sprites/no-inline.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/add.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/animated-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/animated-mask.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/animated-pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/animated-pattern.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/animated-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/animated-symbol.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/checkmark.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/close.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/combined-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/combined-filter.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/dynamic-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/dynamic-filter.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/favourite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/favourite.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/flag-ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/flag-ad.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/flag-uk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/flag-uk.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/folder-colored.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/folder-colored.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/hex-a-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/hex-a-fill.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/linear-gradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/linear-gradient.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/mixed-animation-pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/mixed-animation-pattern.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/mixed-gradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/mixed-gradient.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/assets/simple-hex-upper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/assets/simple-hex-upper.svg -------------------------------------------------------------------------------- /apps/e2e/svg/src/inline-all-extract.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/inline-all-extract.gen.ts -------------------------------------------------------------------------------- /apps/e2e/svg/src/inline-all.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/inline-all.gen.ts -------------------------------------------------------------------------------- /apps/e2e/svg/src/inline-auto.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/inline-auto.gen.ts -------------------------------------------------------------------------------- /apps/e2e/svg/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/main.tsx -------------------------------------------------------------------------------- /apps/e2e/svg/src/no-inline.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/no-inline.gen.ts -------------------------------------------------------------------------------- /apps/e2e/svg/src/sprite.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/sprite.gen.ts -------------------------------------------------------------------------------- /apps/e2e/svg/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/src/styles.css -------------------------------------------------------------------------------- /apps/e2e/svg/static-server.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/static-server.cjs -------------------------------------------------------------------------------- /apps/e2e/svg/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/tailwind.config.cjs -------------------------------------------------------------------------------- /apps/e2e/svg/tests/svg-e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/tests/svg-e2e.test.ts -------------------------------------------------------------------------------- /apps/e2e/svg/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/tsconfig.json -------------------------------------------------------------------------------- /apps/e2e/svg/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/e2e/svg/vite.config.ts -------------------------------------------------------------------------------- /apps/examples/figma/export-file-assets/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-file-assets/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/examples/figma/export-file-assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-file-assets/README.md -------------------------------------------------------------------------------- /apps/examples/figma/export-file-assets/assets/icons/fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-file-assets/assets/icons/fog.svg -------------------------------------------------------------------------------- /apps/examples/figma/export-file-assets/assets/icons/hail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-file-assets/assets/icons/hail.svg -------------------------------------------------------------------------------- /apps/examples/figma/export-file-assets/assets/icons/rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-file-assets/assets/icons/rain.svg -------------------------------------------------------------------------------- /apps/examples/figma/export-file-assets/assets/icons/sleet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-file-assets/assets/icons/sleet.svg -------------------------------------------------------------------------------- /apps/examples/figma/export-file-assets/assets/icons/snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-file-assets/assets/icons/snow.svg -------------------------------------------------------------------------------- /apps/examples/figma/export-file-assets/assets/icons/sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-file-assets/assets/icons/sunny.svg -------------------------------------------------------------------------------- /apps/examples/figma/export-file-assets/assets/icons/wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-file-assets/assets/icons/wind.svg -------------------------------------------------------------------------------- /apps/examples/figma/export-file-assets/docs/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-file-assets/docs/output.png -------------------------------------------------------------------------------- /apps/examples/figma/export-file-assets/docs/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-file-assets/docs/source.png -------------------------------------------------------------------------------- /apps/examples/figma/export-file-assets/figma.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-file-assets/figma.config.cjs -------------------------------------------------------------------------------- /apps/examples/figma/export-file-assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-file-assets/package.json -------------------------------------------------------------------------------- /apps/examples/figma/export-published/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-published/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/examples/figma/export-published/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-published/README.md -------------------------------------------------------------------------------- /apps/examples/figma/export-published/assets/icons/.cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-published/assets/icons/.cache.json -------------------------------------------------------------------------------- /apps/examples/figma/export-published/assets/icons/size-lg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-published/assets/icons/size-lg.svg -------------------------------------------------------------------------------- /apps/examples/figma/export-published/assets/icons/size-md.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-published/assets/icons/size-md.svg -------------------------------------------------------------------------------- /apps/examples/figma/export-published/assets/icons/size-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-published/assets/icons/size-sm.svg -------------------------------------------------------------------------------- /apps/examples/figma/export-published/assets/wolf/.cache.json: -------------------------------------------------------------------------------- 1 | { "published-components:etBvPUmYLbPrflacduH34n": {} } 2 | -------------------------------------------------------------------------------- /apps/examples/figma/export-published/figma.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-published/figma.config.cjs -------------------------------------------------------------------------------- /apps/examples/figma/export-published/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/figma/export-published/package.json -------------------------------------------------------------------------------- /apps/examples/log/frameworks-showcase/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/frameworks-showcase/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/examples/log/frameworks-showcase/express/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/frameworks-showcase/express/app.ts -------------------------------------------------------------------------------- /apps/examples/log/frameworks-showcase/express/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/frameworks-showcase/express/routes.ts -------------------------------------------------------------------------------- /apps/examples/log/frameworks-showcase/koa/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/frameworks-showcase/koa/app.ts -------------------------------------------------------------------------------- /apps/examples/log/frameworks-showcase/koa/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/frameworks-showcase/koa/routes.ts -------------------------------------------------------------------------------- /apps/examples/log/frameworks-showcase/node-http/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/frameworks-showcase/node-http/app.ts -------------------------------------------------------------------------------- /apps/examples/log/frameworks-showcase/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/frameworks-showcase/package.json -------------------------------------------------------------------------------- /apps/examples/log/frameworks-showcase/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/frameworks-showcase/tsconfig.json -------------------------------------------------------------------------------- /apps/examples/log/simple-client/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/simple-client/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/examples/log/simple-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/simple-client/index.html -------------------------------------------------------------------------------- /apps/examples/log/simple-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/simple-client/package.json -------------------------------------------------------------------------------- /apps/examples/log/simple-client/src/app/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/simple-client/src/app/client.ts -------------------------------------------------------------------------------- /apps/examples/log/simple-client/src/shared/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/simple-client/src/shared/lib.ts -------------------------------------------------------------------------------- /apps/examples/log/simple-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/simple-client/tsconfig.json -------------------------------------------------------------------------------- /apps/examples/log/simple-client/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/log/simple-client/vite.config.ts -------------------------------------------------------------------------------- /apps/examples/svg/figma/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/examples/svg/figma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/README.md -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/checkmark.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/chevron-down.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/close.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/copy.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/cut.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/delete.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/down.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/download.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/edit.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/exit.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/export.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/filter.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/groups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/groups.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/help.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/hide.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/history.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/import.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/layout.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/left.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/locate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/locate.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/locked.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/move-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/move-down.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/move-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/move-up.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/open.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/paste.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/pin.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/print.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/redo.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/refresh.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/remove.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/right.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/save.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/search.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/settings.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/show.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/show.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/soft-wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/soft-wrap.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/sort-by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/sort-by.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/undo.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/unlocked.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/up.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/upload.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/general/vcs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/general/vcs.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/theme-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/theme-light.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/tool-windows/ant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/tool-windows/ant.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/tool-windows/dbms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/tool-windows/dbms.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/tool-windows/find.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/tool-windows/find.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/tool-windows/hive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/tool-windows/hive.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/tool-windows/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/tool-windows/npm.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/tool-windows/run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/tool-windows/run.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/tool-windows/rust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/tool-windows/rust.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/tool-windows/task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/tool-windows/task.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/tool-windows/todo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/tool-windows/todo.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/tool-windows/vcs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/tool-windows/vcs.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/assets/icons/tool-windows/web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/assets/icons/tool-windows/web.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/docs/kit-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/docs/kit-overview.png -------------------------------------------------------------------------------- /apps/examples/svg/figma/docs/result-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/docs/result-editor.png -------------------------------------------------------------------------------- /apps/examples/svg/figma/docs/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/docs/result.png -------------------------------------------------------------------------------- /apps/examples/svg/figma/figma.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/figma.config.cjs -------------------------------------------------------------------------------- /apps/examples/svg/figma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/index.html -------------------------------------------------------------------------------- /apps/examples/svg/figma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/package.json -------------------------------------------------------------------------------- /apps/examples/svg/figma/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/postcss.config.cjs -------------------------------------------------------------------------------- /apps/examples/svg/figma/public/sprites/global.f9b62255.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/public/sprites/global.f9b62255.svg -------------------------------------------------------------------------------- /apps/examples/svg/figma/src/app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/src/app/app.tsx -------------------------------------------------------------------------------- /apps/examples/svg/figma/src/app/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/src/app/client.tsx -------------------------------------------------------------------------------- /apps/examples/svg/figma/src/shared/ui/icon/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/src/shared/ui/icon/icon.tsx -------------------------------------------------------------------------------- /apps/examples/svg/figma/src/shared/ui/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/src/shared/ui/icon/index.ts -------------------------------------------------------------------------------- /apps/examples/svg/figma/src/shared/ui/icon/sprite.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/src/shared/ui/icon/sprite.gen.ts -------------------------------------------------------------------------------- /apps/examples/svg/figma/src/shared/ui/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/src/shared/ui/index.css -------------------------------------------------------------------------------- /apps/examples/svg/figma/src/shared/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/src/shared/ui/input.tsx -------------------------------------------------------------------------------- /apps/examples/svg/figma/src/shared/ui/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/src/shared/ui/shared.ts -------------------------------------------------------------------------------- /apps/examples/svg/figma/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/tailwind.config.cjs -------------------------------------------------------------------------------- /apps/examples/svg/figma/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/tsconfig.json -------------------------------------------------------------------------------- /apps/examples/svg/figma/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/figma/vite.config.ts -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/README.md -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/index.html -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/package.json -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/postcss.config.cjs -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/src/app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/src/app/app.tsx -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/src/app/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/src/app/client.tsx -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/src/screens/neodx-svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/src/screens/neodx-svg.tsx -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/src/shared/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/src/shared/ui/badge.tsx -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/src/shared/ui/icon/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/src/shared/ui/icon/icon.tsx -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/src/shared/ui/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/src/shared/ui/icon/index.ts -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/src/shared/ui/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/src/shared/ui/index.css -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/src/shared/ui/informer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/src/shared/ui/informer.tsx -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/src/shared/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/src/shared/ui/input.tsx -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/src/shared/ui/playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/src/shared/ui/playground.tsx -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/src/shared/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/src/shared/ui/select.tsx -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/src/shared/ui/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/src/shared/ui/shared.ts -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/src/shared/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/src/shared/ui/tabs.tsx -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/tailwind.config.cjs -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/tsconfig.json -------------------------------------------------------------------------------- /apps/examples/svg/heroicons/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/heroicons/vite.config.ts -------------------------------------------------------------------------------- /apps/examples/svg/next/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/examples/svg/next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/README.md -------------------------------------------------------------------------------- /apps/examples/svg/next/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/next.config.js -------------------------------------------------------------------------------- /apps/examples/svg/next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/package.json -------------------------------------------------------------------------------- /apps/examples/svg/next/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/postcss.config.cjs -------------------------------------------------------------------------------- /apps/examples/svg/next/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/public/favicon.ico -------------------------------------------------------------------------------- /apps/examples/svg/next/public/general.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/public/general.svg -------------------------------------------------------------------------------- /apps/examples/svg/next/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/public/next.svg -------------------------------------------------------------------------------- /apps/examples/svg/next/public/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/public/sprite.svg -------------------------------------------------------------------------------- /apps/examples/svg/next/public/sprites/general.7fbf930d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/public/sprites/general.7fbf930d.svg -------------------------------------------------------------------------------- /apps/examples/svg/next/public/sprites/other.35c4e813.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/public/sprites/other.35c4e813.svg -------------------------------------------------------------------------------- /apps/examples/svg/next/public/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/public/tools.svg -------------------------------------------------------------------------------- /apps/examples/svg/next/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/public/vercel.svg -------------------------------------------------------------------------------- /apps/examples/svg/next/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/src/pages/_app.tsx -------------------------------------------------------------------------------- /apps/examples/svg/next/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/src/pages/index.tsx -------------------------------------------------------------------------------- /apps/examples/svg/next/src/shared/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/src/shared/ui/badge.tsx -------------------------------------------------------------------------------- /apps/examples/svg/next/src/shared/ui/icon/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/src/shared/ui/icon/icon.tsx -------------------------------------------------------------------------------- /apps/examples/svg/next/src/shared/ui/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/src/shared/ui/icon/index.ts -------------------------------------------------------------------------------- /apps/examples/svg/next/src/shared/ui/icon/sprite.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/src/shared/ui/icon/sprite.gen.ts -------------------------------------------------------------------------------- /apps/examples/svg/next/src/shared/ui/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/src/shared/ui/index.css -------------------------------------------------------------------------------- /apps/examples/svg/next/src/shared/ui/informer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/src/shared/ui/informer.tsx -------------------------------------------------------------------------------- /apps/examples/svg/next/src/shared/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/src/shared/ui/input.tsx -------------------------------------------------------------------------------- /apps/examples/svg/next/src/shared/ui/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/src/shared/ui/shared.ts -------------------------------------------------------------------------------- /apps/examples/svg/next/src/shared/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/src/shared/ui/tabs.tsx -------------------------------------------------------------------------------- /apps/examples/svg/next/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/tailwind.config.cjs -------------------------------------------------------------------------------- /apps/examples/svg/next/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/next/tsconfig.json -------------------------------------------------------------------------------- /apps/examples/svg/storybook/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/examples/svg/storybook/.gitignore: -------------------------------------------------------------------------------- 1 | storybook-static/ 2 | -------------------------------------------------------------------------------- /apps/examples/svg/storybook/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/.storybook/main.ts -------------------------------------------------------------------------------- /apps/examples/svg/storybook/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/.storybook/preview.ts -------------------------------------------------------------------------------- /apps/examples/svg/storybook/README.md: -------------------------------------------------------------------------------- 1 | # `@neodx/svg` + Storybook (Vite/React/Tailwind) 2 | 3 | WIP 4 | -------------------------------------------------------------------------------- /apps/examples/svg/storybook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/package.json -------------------------------------------------------------------------------- /apps/examples/svg/storybook/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/postcss.config.cjs -------------------------------------------------------------------------------- /apps/examples/svg/storybook/src/shared/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/src/shared/ui/badge.tsx -------------------------------------------------------------------------------- /apps/examples/svg/storybook/src/shared/ui/icon/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/src/shared/ui/icon/icon.tsx -------------------------------------------------------------------------------- /apps/examples/svg/storybook/src/shared/ui/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/src/shared/ui/icon/index.ts -------------------------------------------------------------------------------- /apps/examples/svg/storybook/src/shared/ui/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/src/shared/ui/index.css -------------------------------------------------------------------------------- /apps/examples/svg/storybook/src/shared/ui/informer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/src/shared/ui/informer.tsx -------------------------------------------------------------------------------- /apps/examples/svg/storybook/src/shared/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/src/shared/ui/input.tsx -------------------------------------------------------------------------------- /apps/examples/svg/storybook/src/shared/ui/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/src/shared/ui/shared.ts -------------------------------------------------------------------------------- /apps/examples/svg/storybook/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/tailwind.config.cjs -------------------------------------------------------------------------------- /apps/examples/svg/storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/tsconfig.json -------------------------------------------------------------------------------- /apps/examples/svg/storybook/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/storybook/vite.config.ts -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/README.md -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/docs/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/docs/result.png -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/index.html -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/package.json -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/postcss.config.cjs -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/src/app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/src/app/app.tsx -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/src/app/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/src/app/client.tsx -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/src/shared/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/src/shared/ui/badge.tsx -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/src/shared/ui/icon/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/src/shared/ui/icon/icon.tsx -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/src/shared/ui/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/src/shared/ui/icon/index.ts -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/src/shared/ui/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/src/shared/ui/index.css -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/src/shared/ui/informer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/src/shared/ui/informer.tsx -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/src/shared/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/src/shared/ui/input.tsx -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/src/shared/ui/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/src/shared/ui/shared.ts -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/src/shared/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/src/shared/ui/tabs.tsx -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/tailwind.config.cjs -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/tsconfig.json -------------------------------------------------------------------------------- /apps/examples/svg/vite-react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-react/vite.config.ts -------------------------------------------------------------------------------- /apps/examples/svg/vite-vue/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-vue/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/examples/svg/vite-vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-vue/index.html -------------------------------------------------------------------------------- /apps/examples/svg/vite-vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-vue/package.json -------------------------------------------------------------------------------- /apps/examples/svg/vite-vue/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-vue/postcss.config.cjs -------------------------------------------------------------------------------- /apps/examples/svg/vite-vue/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-vue/public/favicon.ico -------------------------------------------------------------------------------- /apps/examples/svg/vite-vue/src/app/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-vue/src/app/app.vue -------------------------------------------------------------------------------- /apps/examples/svg/vite-vue/src/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-vue/src/app/main.ts -------------------------------------------------------------------------------- /apps/examples/svg/vite-vue/src/shared/ui/icon/icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-vue/src/shared/ui/icon/icon.vue -------------------------------------------------------------------------------- /apps/examples/svg/vite-vue/src/shared/ui/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-vue/src/shared/ui/index.css -------------------------------------------------------------------------------- /apps/examples/svg/vite-vue/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-vue/tailwind.config.cjs -------------------------------------------------------------------------------- /apps/examples/svg/vite-vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-vue/tsconfig.json -------------------------------------------------------------------------------- /apps/examples/svg/vite-vue/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/apps/examples/svg/vite-vue/vite.config.ts -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /constraints.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/constraints.pro -------------------------------------------------------------------------------- /libs/autobuild/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/.eslintrc.cjs -------------------------------------------------------------------------------- /libs/autobuild/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/CHANGELOG.md -------------------------------------------------------------------------------- /libs/autobuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/README.md -------------------------------------------------------------------------------- /libs/autobuild/bin.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/bin.mjs -------------------------------------------------------------------------------- /libs/autobuild/examples/advanced-mixed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/advanced-mixed/package.json -------------------------------------------------------------------------------- /libs/autobuild/examples/advanced-mixed/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/advanced-mixed/src/index.ts -------------------------------------------------------------------------------- /libs/autobuild/examples/advanced-mixed/src/styles/global.scss: -------------------------------------------------------------------------------- 1 | @import 'shared'; 2 | 3 | body { 4 | @include reset; 5 | } 6 | -------------------------------------------------------------------------------- /libs/autobuild/examples/advanced-mixed/src/utils/clsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/advanced-mixed/src/utils/clsx.ts -------------------------------------------------------------------------------- /libs/autobuild/examples/advanced-mixed/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/advanced-mixed/tsconfig.json -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-css-sass/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/basic-css-sass/package.json -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-css-sass/src/element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/basic-css-sass/src/element.ts -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-css-sass/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/basic-css-sass/src/index.ts -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-css-sass/src/styles/global.scss: -------------------------------------------------------------------------------- 1 | @import 'shared'; 2 | 3 | body { 4 | @include reset; 5 | } 6 | -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-css-sass/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/basic-css-sass/tsconfig.json -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/basic-css/package.json -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-css/src/dynamic.global.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 20rem; 3 | } 4 | -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-css/src/dynamic.module.css: -------------------------------------------------------------------------------- 1 | .dynamic { 2 | backdrop-filter: blur(10px); 3 | } 4 | -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-css/src/dynamic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/basic-css/src/dynamic.ts -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-css/src/element.module.css: -------------------------------------------------------------------------------- 1 | .name { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-css/src/element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/basic-css/src/element.ts -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-css/src/global.css: -------------------------------------------------------------------------------- 1 | .global-class { 2 | margin: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-css/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/basic-css/src/index.ts -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-css/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/basic-css/tsconfig.json -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-js/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "basic-js" 3 | } 4 | -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-js/src/es-module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/basic-js/src/es-module.mjs -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/basic-js/src/index.js -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-ts/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "basic-ts" 3 | } 4 | -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-ts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/basic-ts/src/index.ts -------------------------------------------------------------------------------- /libs/autobuild/examples/basic-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/basic-ts/tsconfig.json -------------------------------------------------------------------------------- /libs/autobuild/examples/feat-ts-without-definitions/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "basic-ts" 3 | } 4 | -------------------------------------------------------------------------------- /libs/autobuild/examples/multiple-ts-glob/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/multiple-ts-glob/package.json -------------------------------------------------------------------------------- /libs/autobuild/examples/multiple-ts-glob/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/multiple-ts-glob/src/index.ts -------------------------------------------------------------------------------- /libs/autobuild/examples/multiple-ts-glob/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/multiple-ts-glob/tsconfig.json -------------------------------------------------------------------------------- /libs/autobuild/examples/multiple-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/multiple-ts/package.json -------------------------------------------------------------------------------- /libs/autobuild/examples/multiple-ts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/multiple-ts/src/index.ts -------------------------------------------------------------------------------- /libs/autobuild/examples/multiple-ts/src/second-entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/multiple-ts/src/second-entry.ts -------------------------------------------------------------------------------- /libs/autobuild/examples/multiple-ts/src/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/multiple-ts/src/shared.ts -------------------------------------------------------------------------------- /libs/autobuild/examples/multiple-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/examples/multiple-ts/tsconfig.json -------------------------------------------------------------------------------- /libs/autobuild/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/index.d.ts -------------------------------------------------------------------------------- /libs/autobuild/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/package.json -------------------------------------------------------------------------------- /libs/autobuild/src/core/exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/src/core/exports.ts -------------------------------------------------------------------------------- /libs/autobuild/src/core/flatten-dist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/src/core/flatten-dist.ts -------------------------------------------------------------------------------- /libs/autobuild/src/core/scan-package-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/src/core/scan-package-json.ts -------------------------------------------------------------------------------- /libs/autobuild/src/core/scan-project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/src/core/scan-project.ts -------------------------------------------------------------------------------- /libs/autobuild/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/src/index.ts -------------------------------------------------------------------------------- /libs/autobuild/src/rollup/create-rollup-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/src/rollup/create-rollup-config.ts -------------------------------------------------------------------------------- /libs/autobuild/src/rollup/rollup-plugin-bundle-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/src/rollup/rollup-plugin-bundle-size.ts -------------------------------------------------------------------------------- /libs/autobuild/src/rollup/rollup-plugin-swc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/src/rollup/rollup-plugin-swc.ts -------------------------------------------------------------------------------- /libs/autobuild/src/tasks/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/src/tasks/build.ts -------------------------------------------------------------------------------- /libs/autobuild/src/tasks/watch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/src/tasks/watch.ts -------------------------------------------------------------------------------- /libs/autobuild/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/src/types.ts -------------------------------------------------------------------------------- /libs/autobuild/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/src/utils/logger.ts -------------------------------------------------------------------------------- /libs/autobuild/src/utils/resolve-import-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/src/utils/resolve-import-path.ts -------------------------------------------------------------------------------- /libs/autobuild/src/utils/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/src/utils/shared.ts -------------------------------------------------------------------------------- /libs/autobuild/test/examples.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/test/examples.test.ts -------------------------------------------------------------------------------- /libs/autobuild/test/flatten-dist.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/test/flatten-dist.test.ts -------------------------------------------------------------------------------- /libs/autobuild/test/lib/build-example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/test/lib/build-example.ts -------------------------------------------------------------------------------- /libs/autobuild/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/tsconfig.json -------------------------------------------------------------------------------- /libs/autobuild/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/autobuild/vite.config.ts -------------------------------------------------------------------------------- /libs/codegen/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/.eslintrc.cjs -------------------------------------------------------------------------------- /libs/codegen/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/CHANGELOG.md -------------------------------------------------------------------------------- /libs/codegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/README.md -------------------------------------------------------------------------------- /libs/codegen/examples/react-hook/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/examples/react-hook/generate.ts -------------------------------------------------------------------------------- /libs/codegen/examples/react-hook/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/examples/react-hook/generated/index.ts -------------------------------------------------------------------------------- /libs/codegen/examples/react-hook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/examples/react-hook/package.json -------------------------------------------------------------------------------- /libs/codegen/examples/react-hook/template/index.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/examples/react-hook/template/index.ts.ejs -------------------------------------------------------------------------------- /libs/codegen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/package.json -------------------------------------------------------------------------------- /libs/codegen/scripts/add-example.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/scripts/add-example.mjs -------------------------------------------------------------------------------- /libs/codegen/scripts/example-template/generate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/scripts/example-template/generate.mjs -------------------------------------------------------------------------------- /libs/codegen/scripts/example-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/scripts/example-template/package.json -------------------------------------------------------------------------------- /libs/codegen/scripts/example-template/template/_keep_.[name].ts.ejs: -------------------------------------------------------------------------------- 1 | export function <%= name %>() { 2 | return null; 3 | } 4 | -------------------------------------------------------------------------------- /libs/codegen/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/src/index.ts -------------------------------------------------------------------------------- /libs/codegen/src/template/fixture/[dot]gitignore: -------------------------------------------------------------------------------- 1 | ./<%= name %> 2 | -------------------------------------------------------------------------------- /libs/codegen/src/template/fixture/[name].[value].untouched.ts.tmpl._keep_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/codegen/src/template/fixture/[name]/[name].[value].[name].ts.ejs: -------------------------------------------------------------------------------- 1 | export const <%= name %> = {}; 2 | -------------------------------------------------------------------------------- /libs/codegen/src/template/fixture/_keep_.[name].prefixed-untouched.ts.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/codegen/src/template/fixture/raw.txt: -------------------------------------------------------------------------------- 1 | raw content 2 | -------------------------------------------------------------------------------- /libs/codegen/src/template/fixture/template.json.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/src/template/fixture/template.json.ejs -------------------------------------------------------------------------------- /libs/codegen/src/template/generate-files.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/src/template/generate-files.test.ts -------------------------------------------------------------------------------- /libs/codegen/src/template/generate-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/src/template/generate-files.ts -------------------------------------------------------------------------------- /libs/codegen/tests/examples.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/tests/examples.test.ts -------------------------------------------------------------------------------- /libs/codegen/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/tsconfig.json -------------------------------------------------------------------------------- /libs/codegen/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/codegen/vite.config.ts -------------------------------------------------------------------------------- /libs/colors/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/colors/.eslintrc.cjs -------------------------------------------------------------------------------- /libs/colors/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/colors/CHANGELOG.md -------------------------------------------------------------------------------- /libs/colors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/colors/README.md -------------------------------------------------------------------------------- /libs/colors/docs/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/colors/docs/demo.png -------------------------------------------------------------------------------- /libs/colors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/colors/package.json -------------------------------------------------------------------------------- /libs/colors/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/colors/run.js -------------------------------------------------------------------------------- /libs/colors/src/create-colors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/colors/src/create-colors.test.ts -------------------------------------------------------------------------------- /libs/colors/src/create-colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/colors/src/create-colors.ts -------------------------------------------------------------------------------- /libs/colors/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/colors/src/index.ts -------------------------------------------------------------------------------- /libs/colors/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/colors/tsconfig.json -------------------------------------------------------------------------------- /libs/colors/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/colors/vite.config.ts -------------------------------------------------------------------------------- /libs/figma/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/.eslintrc.cjs -------------------------------------------------------------------------------- /libs/figma/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/CHANGELOG.md -------------------------------------------------------------------------------- /libs/figma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/README.md -------------------------------------------------------------------------------- /libs/figma/bin.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/bin.mjs -------------------------------------------------------------------------------- /libs/figma/docs/export-result-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/docs/export-result-example.png -------------------------------------------------------------------------------- /libs/figma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/package.json -------------------------------------------------------------------------------- /libs/figma/src/__tests__/create-figma-client.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/__tests__/create-figma-client.test-d.ts -------------------------------------------------------------------------------- /libs/figma/src/__tests__/create-figma-client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/__tests__/create-figma-client.test.ts -------------------------------------------------------------------------------- /libs/figma/src/__tests__/create-nodes-graph.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/__tests__/create-nodes-graph.test.ts -------------------------------------------------------------------------------- /libs/figma/src/__tests__/export-file.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/__tests__/export-file.test.ts -------------------------------------------------------------------------------- /libs/figma/src/__tests__/export.low-level-api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/__tests__/export.low-level-api.test.ts -------------------------------------------------------------------------------- /libs/figma/src/__tests__/get-file-simple.mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/__tests__/get-file-simple.mock.json -------------------------------------------------------------------------------- /libs/figma/src/__tests__/get-file-weather.mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/__tests__/get-file-weather.mock.json -------------------------------------------------------------------------------- /libs/figma/src/__tests__/testing-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/__tests__/testing-utils.ts -------------------------------------------------------------------------------- /libs/figma/src/__tests__/traverse-graph.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/__tests__/traverse-graph.test.ts -------------------------------------------------------------------------------- /libs/figma/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/cli.ts -------------------------------------------------------------------------------- /libs/figma/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/config.ts -------------------------------------------------------------------------------- /libs/figma/src/core/create-figma-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/core/create-figma-api.ts -------------------------------------------------------------------------------- /libs/figma/src/core/figma-api.h.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/core/figma-api.h.ts -------------------------------------------------------------------------------- /libs/figma/src/core/figma.h.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/core/figma.h.ts -------------------------------------------------------------------------------- /libs/figma/src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/core/index.ts -------------------------------------------------------------------------------- /libs/figma/src/create-figma-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/create-figma-client.ts -------------------------------------------------------------------------------- /libs/figma/src/export/create-export-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/export/create-export-context.ts -------------------------------------------------------------------------------- /libs/figma/src/export/export-file-assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/export/export-file-assets.ts -------------------------------------------------------------------------------- /libs/figma/src/export/export-published-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/export/export-published-components.ts -------------------------------------------------------------------------------- /libs/figma/src/export/images/download-exported-assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/export/images/download-exported-assets.ts -------------------------------------------------------------------------------- /libs/figma/src/export/images/optimize-downloaded-assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/export/images/optimize-downloaded-assets.ts -------------------------------------------------------------------------------- /libs/figma/src/export/images/resolve-exported-assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/export/images/resolve-exported-assets.ts -------------------------------------------------------------------------------- /libs/figma/src/export/images/write-downloaded-assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/export/images/write-downloaded-assets.ts -------------------------------------------------------------------------------- /libs/figma/src/export/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/export/index.ts -------------------------------------------------------------------------------- /libs/figma/src/graph/collect-nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/graph/collect-nodes.ts -------------------------------------------------------------------------------- /libs/figma/src/graph/create-nodes-graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/graph/create-nodes-graph.ts -------------------------------------------------------------------------------- /libs/figma/src/graph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/graph/index.ts -------------------------------------------------------------------------------- /libs/figma/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/index.ts -------------------------------------------------------------------------------- /libs/figma/src/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/shared.ts -------------------------------------------------------------------------------- /libs/figma/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/src/utils.ts -------------------------------------------------------------------------------- /libs/figma/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/tsconfig.json -------------------------------------------------------------------------------- /libs/figma/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/figma/vite.config.ts -------------------------------------------------------------------------------- /libs/fs/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/.eslintrc.cjs -------------------------------------------------------------------------------- /libs/fs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/CHANGELOG.md -------------------------------------------------------------------------------- /libs/fs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/README.md -------------------------------------------------------------------------------- /libs/fs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/package.json -------------------------------------------------------------------------------- /libs/fs/src/__tests__/ensure.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/src/__tests__/ensure.test.ts -------------------------------------------------------------------------------- /libs/fs/src/__tests__/hash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/src/__tests__/hash.test.ts -------------------------------------------------------------------------------- /libs/fs/src/__tests__/read.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/src/__tests__/read.test.ts -------------------------------------------------------------------------------- /libs/fs/src/__tests__/scan.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/src/__tests__/scan.test.ts -------------------------------------------------------------------------------- /libs/fs/src/checks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/src/checks.ts -------------------------------------------------------------------------------- /libs/fs/src/ensure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/src/ensure.ts -------------------------------------------------------------------------------- /libs/fs/src/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/src/hash.ts -------------------------------------------------------------------------------- /libs/fs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/src/index.ts -------------------------------------------------------------------------------- /libs/fs/src/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/src/json.ts -------------------------------------------------------------------------------- /libs/fs/src/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/src/read.ts -------------------------------------------------------------------------------- /libs/fs/src/scan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/src/scan.ts -------------------------------------------------------------------------------- /libs/fs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/tsconfig.json -------------------------------------------------------------------------------- /libs/fs/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/fs/vite.config.ts -------------------------------------------------------------------------------- /libs/glob/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/.eslintrc.cjs -------------------------------------------------------------------------------- /libs/glob/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/CHANGELOG.md -------------------------------------------------------------------------------- /libs/glob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/README.md -------------------------------------------------------------------------------- /libs/glob/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/package.json -------------------------------------------------------------------------------- /libs/glob/src/__tests__/escape.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/__tests__/escape.test.ts -------------------------------------------------------------------------------- /libs/glob/src/__tests__/extract.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/__tests__/extract.test.ts -------------------------------------------------------------------------------- /libs/glob/src/__tests__/glob.bench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/__tests__/glob.bench.ts -------------------------------------------------------------------------------- /libs/glob/src/__tests__/glob.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/__tests__/glob.test-d.ts -------------------------------------------------------------------------------- /libs/glob/src/__tests__/is-static-glob.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/__tests__/is-static-glob.test.ts -------------------------------------------------------------------------------- /libs/glob/src/__tests__/match.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/__tests__/match.test.ts -------------------------------------------------------------------------------- /libs/glob/src/__tests__/walk.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/__tests__/walk.test.ts -------------------------------------------------------------------------------- /libs/glob/src/__tests__/zeptomatch-adapted.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/__tests__/zeptomatch-adapted.test.ts -------------------------------------------------------------------------------- /libs/glob/src/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/extract.ts -------------------------------------------------------------------------------- /libs/glob/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/index.ts -------------------------------------------------------------------------------- /libs/glob/src/match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/match.ts -------------------------------------------------------------------------------- /libs/glob/src/parsers/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/parsers/convert.ts -------------------------------------------------------------------------------- /libs/glob/src/parsers/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/parsers/normalize.ts -------------------------------------------------------------------------------- /libs/glob/src/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/shared.ts -------------------------------------------------------------------------------- /libs/glob/src/walk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/src/walk.ts -------------------------------------------------------------------------------- /libs/glob/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /libs/glob/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/glob/vite.config.ts -------------------------------------------------------------------------------- /libs/internal/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/.eslintrc.cjs -------------------------------------------------------------------------------- /libs/internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/README.md -------------------------------------------------------------------------------- /libs/internal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/package.json -------------------------------------------------------------------------------- /libs/internal/src/cache/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/src/cache/cache.ts -------------------------------------------------------------------------------- /libs/internal/src/cache/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/src/cache/context.ts -------------------------------------------------------------------------------- /libs/internal/src/cache/hasher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/src/cache/hasher.ts -------------------------------------------------------------------------------- /libs/internal/src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/src/errors.ts -------------------------------------------------------------------------------- /libs/internal/src/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/src/hash.ts -------------------------------------------------------------------------------- /libs/internal/src/intl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/src/intl.ts -------------------------------------------------------------------------------- /libs/internal/src/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/src/log.ts -------------------------------------------------------------------------------- /libs/internal/src/npm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/src/npm.ts -------------------------------------------------------------------------------- /libs/internal/src/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/src/params.ts -------------------------------------------------------------------------------- /libs/internal/src/svgo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/src/svgo.ts -------------------------------------------------------------------------------- /libs/internal/src/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/src/tasks.ts -------------------------------------------------------------------------------- /libs/internal/src/vfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/src/vfs.ts -------------------------------------------------------------------------------- /libs/internal/src/zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/src/zod.ts -------------------------------------------------------------------------------- /libs/internal/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /libs/internal/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/internal/vite.config.ts -------------------------------------------------------------------------------- /libs/log/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/.eslintrc.cjs -------------------------------------------------------------------------------- /libs/log/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/CHANGELOG.md -------------------------------------------------------------------------------- /libs/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/README.md -------------------------------------------------------------------------------- /libs/log/bench/build-entries/bunyan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/bench/build-entries/bunyan.ts -------------------------------------------------------------------------------- /libs/log/bench/build-entries/loglevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/bench/build-entries/loglevel.ts -------------------------------------------------------------------------------- /libs/log/bench/build-entries/neodx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/bench/build-entries/neodx.ts -------------------------------------------------------------------------------- /libs/log/bench/build-entries/pino.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/bench/build-entries/pino.ts -------------------------------------------------------------------------------- /libs/log/bench/compare-bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/bench/compare-bundle.ts -------------------------------------------------------------------------------- /libs/log/bench/compare-output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/bench/compare-output.ts -------------------------------------------------------------------------------- /libs/log/bench/compare-perf.bench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/bench/compare-perf.bench.ts -------------------------------------------------------------------------------- /libs/log/bench/neodx-log-perf.bench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/bench/neodx-log-perf.bench.ts -------------------------------------------------------------------------------- /libs/log/bench/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/bench/shared.ts -------------------------------------------------------------------------------- /libs/log/docs/aliases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/docs/aliases.png -------------------------------------------------------------------------------- /libs/log/docs/compare-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/docs/compare-output.png -------------------------------------------------------------------------------- /libs/log/docs/example-express-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/docs/example-express-logs.png -------------------------------------------------------------------------------- /libs/log/docs/example-http-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/docs/example-http-logs.png -------------------------------------------------------------------------------- /libs/log/docs/example-koa-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/docs/example-koa-logs.png -------------------------------------------------------------------------------- /libs/log/docs/output-levels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/docs/output-levels.png -------------------------------------------------------------------------------- /libs/log/docs/preview-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/docs/preview-intro.png -------------------------------------------------------------------------------- /libs/log/examples/big-list-of-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/examples/big-list-of-logs.ts -------------------------------------------------------------------------------- /libs/log/examples/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/examples/json.ts -------------------------------------------------------------------------------- /libs/log/examples/pretty-errors-files/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/examples/pretty-errors-files/app.ts -------------------------------------------------------------------------------- /libs/log/examples/pretty-errors-files/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/examples/pretty-errors-files/controller.ts -------------------------------------------------------------------------------- /libs/log/examples/pretty-errors-files/repo/products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/examples/pretty-errors-files/repo/products.ts -------------------------------------------------------------------------------- /libs/log/examples/pretty-errors-files/services/products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/examples/pretty-errors-files/services/products.ts -------------------------------------------------------------------------------- /libs/log/examples/pretty-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/examples/pretty-errors.ts -------------------------------------------------------------------------------- /libs/log/examples/with-express/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/examples/with-express/app.ts -------------------------------------------------------------------------------- /libs/log/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/package.json -------------------------------------------------------------------------------- /libs/log/src/__tests__/errors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/__tests__/errors.test.ts -------------------------------------------------------------------------------- /libs/log/src/__tests__/http.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/__tests__/http.test-d.ts -------------------------------------------------------------------------------- /libs/log/src/__tests__/logger.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/__tests__/logger.test-d.ts -------------------------------------------------------------------------------- /libs/log/src/__tests__/logger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/__tests__/logger.test.ts -------------------------------------------------------------------------------- /libs/log/src/__tests__/node-pretty-stream.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/__tests__/node-pretty-stream.test.ts -------------------------------------------------------------------------------- /libs/log/src/__tests__/printf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/__tests__/printf.test.ts -------------------------------------------------------------------------------- /libs/log/src/__tests__/serialize-json.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/__tests__/serialize-json.test.ts -------------------------------------------------------------------------------- /libs/log/src/__tests__/testing-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/__tests__/testing-utils.ts -------------------------------------------------------------------------------- /libs/log/src/__tests__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/__tests__/utils.test.ts -------------------------------------------------------------------------------- /libs/log/src/core/create-logger-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/core/create-logger-factory.ts -------------------------------------------------------------------------------- /libs/log/src/core/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/core/shared.ts -------------------------------------------------------------------------------- /libs/log/src/core/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/core/types.ts -------------------------------------------------------------------------------- /libs/log/src/express.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/express.ts -------------------------------------------------------------------------------- /libs/log/src/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/http/index.ts -------------------------------------------------------------------------------- /libs/log/src/http/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/http/utils.ts -------------------------------------------------------------------------------- /libs/log/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/index.ts -------------------------------------------------------------------------------- /libs/log/src/koa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/koa.ts -------------------------------------------------------------------------------- /libs/log/src/node/error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/node/error/index.ts -------------------------------------------------------------------------------- /libs/log/src/node/error/print-code-frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/node/error/print-code-frame.ts -------------------------------------------------------------------------------- /libs/log/src/node/error/print-pretty-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/node/error/print-pretty-error.ts -------------------------------------------------------------------------------- /libs/log/src/node/error/serialize-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/node/error/serialize-error.ts -------------------------------------------------------------------------------- /libs/log/src/node/error/source-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/node/error/source-map.ts -------------------------------------------------------------------------------- /libs/log/src/node/error/stack-trace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/node/error/stack-trace.ts -------------------------------------------------------------------------------- /libs/log/src/node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/node/index.ts -------------------------------------------------------------------------------- /libs/log/src/node/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/node/json.ts -------------------------------------------------------------------------------- /libs/log/src/node/pretty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/node/pretty.ts -------------------------------------------------------------------------------- /libs/log/src/node/serializers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/node/serializers.ts -------------------------------------------------------------------------------- /libs/log/src/node/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/node/shared.ts -------------------------------------------------------------------------------- /libs/log/src/utils/create-auto-logger-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/utils/create-auto-logger-factory.ts -------------------------------------------------------------------------------- /libs/log/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/utils/index.ts -------------------------------------------------------------------------------- /libs/log/src/utils/printf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/utils/printf.ts -------------------------------------------------------------------------------- /libs/log/src/utils/read-arguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/utils/read-arguments.ts -------------------------------------------------------------------------------- /libs/log/src/utils/serialize-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/src/utils/serialize-json.ts -------------------------------------------------------------------------------- /libs/log/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /libs/log/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/log/vite.config.ts -------------------------------------------------------------------------------- /libs/pkg-misc/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/pkg-misc/.eslintrc.cjs -------------------------------------------------------------------------------- /libs/pkg-misc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/pkg-misc/CHANGELOG.md -------------------------------------------------------------------------------- /libs/pkg-misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/pkg-misc/README.md -------------------------------------------------------------------------------- /libs/pkg-misc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/pkg-misc/package.json -------------------------------------------------------------------------------- /libs/pkg-misc/src/__tests__/package-json.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/pkg-misc/src/__tests__/package-json.test.ts -------------------------------------------------------------------------------- /libs/pkg-misc/src/__tests__/prettier.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/pkg-misc/src/__tests__/prettier.test.ts -------------------------------------------------------------------------------- /libs/pkg-misc/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/pkg-misc/src/index.ts -------------------------------------------------------------------------------- /libs/pkg-misc/src/package-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/pkg-misc/src/package-json.ts -------------------------------------------------------------------------------- /libs/pkg-misc/src/prettier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/pkg-misc/src/prettier.ts -------------------------------------------------------------------------------- /libs/pkg-misc/src/semver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/pkg-misc/src/semver.ts -------------------------------------------------------------------------------- /libs/pkg-misc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/pkg-misc/tsconfig.json -------------------------------------------------------------------------------- /libs/pkg-misc/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/pkg-misc/vite.config.ts -------------------------------------------------------------------------------- /libs/std/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/.eslintrc.cjs -------------------------------------------------------------------------------- /libs/std/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/CHANGELOG.md -------------------------------------------------------------------------------- /libs/std/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/README.md -------------------------------------------------------------------------------- /libs/std/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/package.json -------------------------------------------------------------------------------- /libs/std/src/__tests__/async.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/__tests__/async.test.ts -------------------------------------------------------------------------------- /libs/std/src/__tests__/chunking.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/__tests__/chunking.test.ts -------------------------------------------------------------------------------- /libs/std/src/__tests__/concurrent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/__tests__/concurrent.test.ts -------------------------------------------------------------------------------- /libs/std/src/__tests__/deduplicate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/__tests__/deduplicate.test.ts -------------------------------------------------------------------------------- /libs/std/src/__tests__/filter.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/__tests__/filter.test-d.ts -------------------------------------------------------------------------------- /libs/std/src/__tests__/merge.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/__tests__/merge.test.ts -------------------------------------------------------------------------------- /libs/std/src/__tests__/object.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/__tests__/object.test.ts -------------------------------------------------------------------------------- /libs/std/src/__tests__/sort.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/__tests__/sort.test.ts -------------------------------------------------------------------------------- /libs/std/src/__tests__/testing-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/__tests__/testing-utils.ts -------------------------------------------------------------------------------- /libs/std/src/__tests__/to-case.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/__tests__/to-case.test.ts -------------------------------------------------------------------------------- /libs/std/src/__tests__/uniq.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/__tests__/uniq.test.ts -------------------------------------------------------------------------------- /libs/std/src/__tests__/url.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/__tests__/url.test.ts -------------------------------------------------------------------------------- /libs/std/src/array/chunking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/array/chunking.ts -------------------------------------------------------------------------------- /libs/std/src/array/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/array/create.ts -------------------------------------------------------------------------------- /libs/std/src/array/difference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/array/difference.ts -------------------------------------------------------------------------------- /libs/std/src/array/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/array/filter.ts -------------------------------------------------------------------------------- /libs/std/src/array/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/array/group.ts -------------------------------------------------------------------------------- /libs/std/src/array/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/array/index.ts -------------------------------------------------------------------------------- /libs/std/src/array/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/array/shared.ts -------------------------------------------------------------------------------- /libs/std/src/array/uniq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/array/uniq.ts -------------------------------------------------------------------------------- /libs/std/src/async/concurrent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/async/concurrent.ts -------------------------------------------------------------------------------- /libs/std/src/async/deduplicate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/async/deduplicate.ts -------------------------------------------------------------------------------- /libs/std/src/async/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/async/index.ts -------------------------------------------------------------------------------- /libs/std/src/async/reduce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/async/reduce.ts -------------------------------------------------------------------------------- /libs/std/src/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/debounce.ts -------------------------------------------------------------------------------- /libs/std/src/guards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/guards.ts -------------------------------------------------------------------------------- /libs/std/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/index.ts -------------------------------------------------------------------------------- /libs/std/src/invariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/invariant.ts -------------------------------------------------------------------------------- /libs/std/src/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/math.ts -------------------------------------------------------------------------------- /libs/std/src/memoize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/memoize.ts -------------------------------------------------------------------------------- /libs/std/src/merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/merge.ts -------------------------------------------------------------------------------- /libs/std/src/object/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/object/create.ts -------------------------------------------------------------------------------- /libs/std/src/object/equals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/object/equals.ts -------------------------------------------------------------------------------- /libs/std/src/object/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/object/filter.ts -------------------------------------------------------------------------------- /libs/std/src/object/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/object/index.ts -------------------------------------------------------------------------------- /libs/std/src/object/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/object/map.ts -------------------------------------------------------------------------------- /libs/std/src/object/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/object/sort.ts -------------------------------------------------------------------------------- /libs/std/src/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/shared.ts -------------------------------------------------------------------------------- /libs/std/src/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/string.ts -------------------------------------------------------------------------------- /libs/std/src/to-case.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/to-case.ts -------------------------------------------------------------------------------- /libs/std/src/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/src/url.ts -------------------------------------------------------------------------------- /libs/std/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /libs/std/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/std/vite.config.ts -------------------------------------------------------------------------------- /libs/svg/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/.eslintrc.cjs -------------------------------------------------------------------------------- /libs/svg/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/CHANGELOG.md -------------------------------------------------------------------------------- /libs/svg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/README.md -------------------------------------------------------------------------------- /libs/svg/bin.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/bin.mjs -------------------------------------------------------------------------------- /libs/svg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/package.json -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__examples__/colors/assets/fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__examples__/colors/assets/fill.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__examples__/react/example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__examples__/react/example.tsx -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__examples__/react/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__examples__/react/icon.tsx -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__snapshots__/builder.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__snapshots__/builder.test.ts.snap -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__snapshots__/examples.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__snapshots__/examples.test.ts.snap -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/colors/hex-a-fill-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/colors/hex-a-fill-alt.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/colors/hex-a-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/colors/hex-a-fill.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/colors/hex-a-stroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/colors/hex-a-stroke.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/colors/hex-b-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/colors/hex-b-fill.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/colors/hex-b-stroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/colors/hex-b-stroke.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/colors/simple-keyword.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/colors/simple-keyword.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/colors/simple-rgb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/colors/simple-rgb.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/common/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/common/add.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/common/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/common/checkmark.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/common/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/common/close.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/common/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/common/copy.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/common/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/common/delete.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/common/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/common/edit.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/common/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/common/exit.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/common/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/common/export.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/common/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/common/help.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/flags/au.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/flags/au.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/flags/uk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/flags/uk.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/flags/us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/flags/us.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/mask/flag-uk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/mask/flag-uk.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/mask/flag-us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/mask/flag-us.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/references/animated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/references/animated.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/references/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/references/filter.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/references/mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/references/mask.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/references/mixed-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/references/mixed-mask.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/references/mixed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/references/mixed.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/references/pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/references/pattern.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/references/text-clip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/references/text-clip.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/__stubs__/references/text-path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/__stubs__/references/text-path.svg -------------------------------------------------------------------------------- /libs/svg/src/__tests__/builder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/builder.test.ts -------------------------------------------------------------------------------- /libs/svg/src/__tests__/examples.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/examples.test.ts -------------------------------------------------------------------------------- /libs/svg/src/__tests__/parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/parser.test.ts -------------------------------------------------------------------------------- /libs/svg/src/__tests__/runtime.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/runtime.test-d.ts -------------------------------------------------------------------------------- /libs/svg/src/__tests__/testing-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/testing-utils.ts -------------------------------------------------------------------------------- /libs/svg/src/__tests__/watcher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/__tests__/watcher.test.ts -------------------------------------------------------------------------------- /libs/svg/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/cli.ts -------------------------------------------------------------------------------- /libs/svg/src/core/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/core/builder.ts -------------------------------------------------------------------------------- /libs/svg/src/core/cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/core/cleanup.ts -------------------------------------------------------------------------------- /libs/svg/src/core/collector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/core/collector.ts -------------------------------------------------------------------------------- /libs/svg/src/core/inlining.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/core/inlining.ts -------------------------------------------------------------------------------- /libs/svg/src/core/metadata-runtime-template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/core/metadata-runtime-template.ts -------------------------------------------------------------------------------- /libs/svg/src/core/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/core/metadata.ts -------------------------------------------------------------------------------- /libs/svg/src/core/optimizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/core/optimizer.ts -------------------------------------------------------------------------------- /libs/svg/src/core/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/core/parser.ts -------------------------------------------------------------------------------- /libs/svg/src/core/reset-colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/core/reset-colors.ts -------------------------------------------------------------------------------- /libs/svg/src/core/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/core/shared.ts -------------------------------------------------------------------------------- /libs/svg/src/esbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/esbuild.ts -------------------------------------------------------------------------------- /libs/svg/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/index.ts -------------------------------------------------------------------------------- /libs/svg/src/rollup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/rollup.ts -------------------------------------------------------------------------------- /libs/svg/src/rspack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/rspack.ts -------------------------------------------------------------------------------- /libs/svg/src/tasks/build-sprites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/tasks/build-sprites.ts -------------------------------------------------------------------------------- /libs/svg/src/tasks/watch-sprites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/tasks/watch-sprites.ts -------------------------------------------------------------------------------- /libs/svg/src/unplugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/unplugin.ts -------------------------------------------------------------------------------- /libs/svg/src/vite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/vite.ts -------------------------------------------------------------------------------- /libs/svg/src/webpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/src/webpack.ts -------------------------------------------------------------------------------- /libs/svg/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/tsconfig.json -------------------------------------------------------------------------------- /libs/svg/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/svg/vite.config.ts -------------------------------------------------------------------------------- /libs/vfs/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/.eslintrc.cjs -------------------------------------------------------------------------------- /libs/vfs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/CHANGELOG.md -------------------------------------------------------------------------------- /libs/vfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/README.md -------------------------------------------------------------------------------- /libs/vfs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/package.json -------------------------------------------------------------------------------- /libs/vfs/src/__tests__/backends.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/__tests__/backends.test.ts -------------------------------------------------------------------------------- /libs/vfs/src/__tests__/base-vfs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/__tests__/base-vfs.test.ts -------------------------------------------------------------------------------- /libs/vfs/src/__tests__/eslint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/__tests__/eslint.test.ts -------------------------------------------------------------------------------- /libs/vfs/src/__tests__/glob.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/__tests__/glob.test.ts -------------------------------------------------------------------------------- /libs/vfs/src/__tests__/prettier.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/__tests__/prettier.test.ts -------------------------------------------------------------------------------- /libs/vfs/src/__tests__/scan.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/__tests__/scan.test.ts -------------------------------------------------------------------------------- /libs/vfs/src/__tests__/use-cases.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/__tests__/use-cases.test.ts -------------------------------------------------------------------------------- /libs/vfs/src/__tests__/vfs.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/__tests__/vfs.test-d.ts -------------------------------------------------------------------------------- /libs/vfs/src/backend/create-in-memory-backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/backend/create-in-memory-backend.ts -------------------------------------------------------------------------------- /libs/vfs/src/backend/create-node-fs-backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/backend/create-node-fs-backend.ts -------------------------------------------------------------------------------- /libs/vfs/src/backend/create-readonly-backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/backend/create-readonly-backend.ts -------------------------------------------------------------------------------- /libs/vfs/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/backend/index.ts -------------------------------------------------------------------------------- /libs/vfs/src/backend/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/backend/shared.ts -------------------------------------------------------------------------------- /libs/vfs/src/core/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/core/context.ts -------------------------------------------------------------------------------- /libs/vfs/src/core/create-base-vfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/core/create-base-vfs.ts -------------------------------------------------------------------------------- /libs/vfs/src/core/file-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/core/file-api.ts -------------------------------------------------------------------------------- /libs/vfs/src/core/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/core/operations.ts -------------------------------------------------------------------------------- /libs/vfs/src/core/scopes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/core/scopes.ts -------------------------------------------------------------------------------- /libs/vfs/src/core/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/core/types.ts -------------------------------------------------------------------------------- /libs/vfs/src/create-auto-vfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/create-auto-vfs.ts -------------------------------------------------------------------------------- /libs/vfs/src/create-vfs-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/create-vfs-plugin.ts -------------------------------------------------------------------------------- /libs/vfs/src/create-vfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/create-vfs.ts -------------------------------------------------------------------------------- /libs/vfs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/index.ts -------------------------------------------------------------------------------- /libs/vfs/src/plugins/eslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/plugins/eslint.ts -------------------------------------------------------------------------------- /libs/vfs/src/plugins/glob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/plugins/glob.ts -------------------------------------------------------------------------------- /libs/vfs/src/plugins/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/plugins/json.ts -------------------------------------------------------------------------------- /libs/vfs/src/plugins/package-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/plugins/package-json.ts -------------------------------------------------------------------------------- /libs/vfs/src/plugins/prettier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/plugins/prettier.ts -------------------------------------------------------------------------------- /libs/vfs/src/plugins/scan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/plugins/scan.ts -------------------------------------------------------------------------------- /libs/vfs/src/testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/src/testing.ts -------------------------------------------------------------------------------- /libs/vfs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/tsconfig.json -------------------------------------------------------------------------------- /libs/vfs/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/libs/vfs/vite.config.ts -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/package.json -------------------------------------------------------------------------------- /prompts/writing-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/prompts/writing-documentation.md -------------------------------------------------------------------------------- /tools/scripts/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/tools/scripts/.eslintrc.cjs -------------------------------------------------------------------------------- /tools/scripts/README.md: -------------------------------------------------------------------------------- 1 | # scripts 2 | -------------------------------------------------------------------------------- /tools/scripts/bin.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/tools/scripts/bin.mjs -------------------------------------------------------------------------------- /tools/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/tools/scripts/package.json -------------------------------------------------------------------------------- /tools/scripts/templates/example/.eslintrc.cjs.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/tools/scripts/templates/example/.eslintrc.cjs.tmpl -------------------------------------------------------------------------------- /tools/scripts/templates/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/tools/scripts/templates/example/index.html -------------------------------------------------------------------------------- /tools/scripts/templates/example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/tools/scripts/templates/example/package.json -------------------------------------------------------------------------------- /tools/scripts/templates/example/src/app/client.ts: -------------------------------------------------------------------------------- 1 | export function main() { 2 | console.log('main'); 3 | } 4 | -------------------------------------------------------------------------------- /tools/scripts/templates/example/tsconfig.json.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/tools/scripts/templates/example/tsconfig.json.tmpl -------------------------------------------------------------------------------- /tools/scripts/templates/example/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/tools/scripts/templates/example/vite.config.ts -------------------------------------------------------------------------------- /tools/scripts/templates/lib/.eslintrc.cjs.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/tools/scripts/templates/lib/.eslintrc.cjs.tmpl -------------------------------------------------------------------------------- /tools/scripts/templates/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/tools/scripts/templates/lib/README.md -------------------------------------------------------------------------------- /tools/scripts/templates/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/tools/scripts/templates/lib/package.json -------------------------------------------------------------------------------- /tools/scripts/templates/lib/src/index.ts: -------------------------------------------------------------------------------- 1 | export function main() { 2 | console.log('main'); 3 | } 4 | -------------------------------------------------------------------------------- /tools/scripts/templates/lib/tsconfig.json.tmpl: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /tools/scripts/templates/lib/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/tools/scripts/templates/lib/vite.config.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secundant/neodx/HEAD/yarn.lock --------------------------------------------------------------------------------