0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2025-03-14 00:38:41 -04:00

Add files via upload

This commit is contained in:
abs-js 2024-08-17 11:10:05 -03:00 committed by GitHub
parent acb99b6f87
commit 665b3c6c70
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 24 additions and 2 deletions

20
install.sh Normal file
View file

@ -0,0 +1,20 @@
#!/bin/bash
# Instalar todas as dependências com versões específicas
npm install conventional-changelog-cli@^2.1.1 \
eslint@^6.8.0 \
html-webpack-plugin@^4.5.1 \
jest@^29.7.0 \
jest-worker@^29.7.0 \
json-stringify-pretty-compact@^2.0.0 \
matter-tools@^0.14.0 \
matter-wrap@^0.2.0 \
mock-require@^3.0.3 \
pathseg@^1.2.0 \
poly-decomp@^0.3.0 \
puppeteer-core@^5.5.0 \
terser-webpack-plugin@^4.2.3 \
webpack@^4.46.0 \
webpack-bundle-analyzer@^4.4.0 \
webpack-cli@^3.3.11 \
webpack-dev-server@^3.11.1

View file

@ -60,7 +60,8 @@
"changelog": "conventional-changelog -i CHANGELOG.md -s -r",
"release": "npm version --no-git-tag-version",
"preversion": "git checkout master && npm run lint && npm run test-node -- --save=true",
"version": "git checkout -b release/$npm_package_version && npm run build"
"version": "git checkout -b release/$npm_package_version && npm run build",
"install": "./install.sh"
},
"files": [
"src",
@ -69,6 +70,7 @@
"README.md",
"CHANGELOG.md",
"LICENSE",
"package.json"
"package.json",
"install.sh"
]
}