### Changes: - **README.md**: - Reformatted "Live Demo" and "Demo" sections for improved readability. - Adjusted line wrapping to enhance clarity and maintain consistent formatting. - **.npmignore**: - Allowed inclusion of `brainy.png` while preserving exclusions for other `.png` files. - **src/utils/version.ts**: - Bumped version from `0.9.0` to `0.9.1`. ### Purpose: Enhanced documentation formatting for better user experience and easier navigation. Updated `.npmignore` to refine file inclusion for package distribution. Incremented version to `0.9.1` to reflect the latest changes.
40 lines
473 B
Text
40 lines
473 B
Text
# Exclude source maps
|
|
*.map
|
|
**/*.map
|
|
|
|
# Development files
|
|
node_modules/
|
|
src/
|
|
tests/
|
|
examples/
|
|
.github/
|
|
.vscode/
|
|
.idea/
|
|
cloud-wrapper/
|
|
scripts/
|
|
|
|
# Configuration files
|
|
.eslintrc
|
|
.prettierrc
|
|
tsconfig*.json
|
|
rollup.config.js
|
|
jest.config.js
|
|
|
|
# Build artifacts
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Large files
|
|
# Include the logo but exclude other PNGs
|
|
!brainy.png
|
|
*.png
|
|
encoded-image.*
|
|
README.demo.md
|
|
scalingStrategy.md
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|