From 4bee7b73b5c7e3fe5fbc1bc9eb32d424792714a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D1=80=D1=83=D0=B3=D0=BB=D0=B8=D1=86=D0=BA=D0=B8?= =?UTF-8?q?=D0=B9=20=D0=9D=D0=B8=D0=BA=D0=B8=D1=82=D0=B0=20=D0=92=D0=B8?= =?UTF-8?q?=D1=82=D0=B0=D0=BB=D1=8C=D0=B5=D0=B2=D0=B8=D1=87?= Date: Wed, 19 Nov 2025 14:36:48 +0600 Subject: [PATCH] First commit --- .editorconfig | 8 ++++++++ .gitattributes | 4 ++++ .gitignore | 17 +++++++++++++++++ README.md | 1 + package.json | 4 ++++ 5 files changed, 34 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 README.md create mode 100644 package.json diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..025dd8c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..af3ad12 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +/.yarn/** linguist-vendored +/.yarn/releases/* binary +/.yarn/plugins/**/* binary +/.pnp.* binary linguist-generated diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f03eaec --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions + +# Whether you use PnP or not, the node_modules folder is often used to store +# build artifacts that should be gitignored +node_modules + +# Swap the comments on the following lines if you wish to use zero-installs +# In that case, don't forget to run `yarn config set enableGlobalCache false`! +# Documentation here: https://yarnpkg.com/features/caching#zero-installs + +#!.yarn/cache +.pnp.* diff --git a/README.md b/README.md new file mode 100644 index 0000000..c037b4d --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# yjs-bpmn-frontend diff --git a/package.json b/package.json new file mode 100644 index 0000000..46f0369 --- /dev/null +++ b/package.json @@ -0,0 +1,4 @@ +{ + "name": "yjs-bpmn-frontend", + "packageManager": "yarn@4.11.0" +}