Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/typescript - exploratory continuation #26

Open
wants to merge 9 commits into
base: feat/typescript
Choose a base branch
from
Prev Previous commit
Next Next commit
chore: macos does not support cp --parents, add a cross-platoform com…
…mand to be tested
dgilperez committed Dec 8, 2022
commit b1bc230f57043547ef0b441a49fe7a5f3845043f
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -52,6 +52,7 @@
"build.docs": "documentation build src/index.js --project-name m -f html -o docs -c documentation.yml",
"build.js": "swc src -d 'dist/src'",
"build.types": "cp --parents src/index.d.ts dist && cp -r --parents src/**/*.d.ts dist && cp -r --parents types dist",
"build.types.mac": "mkdir -p dist && cp src/index.d.ts dist/src/ && rsync -R types/** dist && rsync -R src/**/*.d.ts dist",
"prebuild": "rm -rf dist && mkdir -p dist",
"build": "npm run build.js && npm run build.types && npm run build.docs",
"----LINT": "",