mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2025-12-12 07:40:26 -08:00
45 lines
915 B
Plaintext
45 lines
915 B
Plaintext
# vscode files
|
|
.vscode/
|
|
# for mac os users
|
|
.DS_Store
|
|
|
|
out/
|
|
# deployment scripts
|
|
deploy/
|
|
# node dependencies
|
|
node_modules/
|
|
|
|
package-lock.json
|
|
|
|
# rust tmp files for useful for the compilation phase
|
|
src/core/Cargo.lock
|
|
src/core/target/
|
|
|
|
# the tmp glsl files used when minifying the shaders into the wasm (build.rs)
|
|
src/glsl/webgl2/**/*.min
|
|
src/glsl/webgl2/**/*.tmp
|
|
|
|
package/
|
|
|
|
## python related
|
|
# python environment
|
|
aladin-lite-venv
|
|
# python cached files
|
|
__pycache__/
|
|
|
|
## API doc related
|
|
# folder containing the generated HTML API documentation files
|
|
docs/
|
|
# style jsdoc files generated with npm run doc
|
|
jsdoc-custom-styledocs
|
|
# responsive jsdoc files generated with npm run doc
|
|
jsdoc-make-responsivedocs
|
|
|
|
## playwright testing framework related
|
|
test-results/
|
|
playwright-report/
|
|
|
|
## packaged tar obtained from the cmd: npm run predeploy or npm run deploy
|
|
aladin-lite*.tgz
|
|
# folder where the generated bundle lies
|
|
dist/ |