├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── assets └── 2d7b7bc1-ac46-4020-89c9-390d1a7297e2.jpg ├── package.json ├── src ├── index.css └── index.ts ├── tsconfig.json ├── vite.config.js └── yarn.lock /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-js/warning/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | npm-debug.log 3 | .idea/ 4 | .DS_Store 5 | dist 6 | .yarn/ 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | .babelrc 3 | vite.config.js 4 | yarn.lock 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-js/warning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-js/warning/HEAD/README.md -------------------------------------------------------------------------------- /assets/2d7b7bc1-ac46-4020-89c9-390d1a7297e2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-js/warning/HEAD/assets/2d7b7bc1-ac46-4020-89c9-390d1a7297e2.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-js/warning/HEAD/package.json -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-js/warning/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-js/warning/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-js/warning/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-js/warning/HEAD/vite.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editor-js/warning/HEAD/yarn.lock --------------------------------------------------------------------------------