diff options
| author | Valentin Popov <valentin@popov.link> | 2026-02-06 01:31:20 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-02-06 01:31:20 +0300 |
| commit | 08dac92ead9014827f92456e3cce566ad654678a (patch) | |
| tree | 16ec6986bc88f33b6d0e094660cee25956bba933 /.npmignore | |
| parent | d387c7bf8ae7711858b3348a6efa28bfeb8e878b (diff) | |
| download | strapi-plugin-checkbox-list-08dac92ead9014827f92456e3cce566ad654678a.tar.xz strapi-plugin-checkbox-list-08dac92ead9014827f92456e3cce566ad654678a.zip | |
Add .npmignore, LICENSE.txt, and update README.md
- Created a .npmignore file to exclude unnecessary files and directories from npm packages.
- Added LICENSE.txt to specify the licensing terms for the project.
- Expanded README.md to include detailed plugin features, installation instructions, usage guidelines, and contribution information.
- Updated package.json to reflect new repository URLs for issues and homepage.
Diffstat (limited to '.npmignore')
| -rw-r--r-- | .npmignore | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..b20a6e4 --- /dev/null +++ b/.npmignore @@ -0,0 +1,39 @@ +# Dependencies and logs +node_modules/ +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Caches and temp +.cache/ +.tmp/ +*.tgz + +# VCS / CI / IDE +.git/ +.gitea/ +.github/ +.gitlab/ +.vscode/ +.idea/ +.DS_Store + +# Playground / tests / coverage +playground/ +tests/ +coverage/ +**/__tests__/ +**/*.spec.* +**/*.test.* + +# Source-only folders (built output lives in dist/) +admin/ +server/ + +# Misc project files +renovate.config.cjs +package-lock.json +.env +.env.* |
