commit 4bee7b73b5c7e3fe5fbc1bc9eb32d424792714a4 Author: Круглицкий Никита Витальевич Date: Wed Nov 19 14:36:48 2025 +0600 First commit 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" +}