mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 13:17:53 +00:00
0705d321da
* invert npmignore to include what we want * remove line for no-longer-existent src/**/*.spec.js files from npmignore * cleanup npmignore comments * remove platform dirs from npmignore, they were removed from the repo * remove one more platform reference from npmignore * publish example/ and app.js, at least for now Co-authored-by: John Hill <john.c.hill@nasa.gov> Co-authored-by: Shefali Joshi <simplyrender@gmail.com> Co-authored-by: Jamie V <jamie.j.vigliotta@nasa.gov>
27 lines
667 B
Plaintext
27 lines
667 B
Plaintext
# Ignore everything first (will not ignore special files like LICENSE.md,
|
|
# README.md, and package.json)...
|
|
/**/*
|
|
|
|
# ...but include these folders...
|
|
!/dist/**/*
|
|
!/src/**/*
|
|
|
|
# We might be able to remove this if it is not imported by any project directly.
|
|
# https://github.com/nasa/openmct/issues/4992
|
|
!/example/**/*
|
|
|
|
# We will remove this in https://github.com/nasa/openmct/issues/4922
|
|
!/app.js
|
|
|
|
# ...except for these files in the above folders.
|
|
/src/**/*Spec.js
|
|
/src/**/test/
|
|
# TODO move test utils into test/ folders
|
|
/src/utils/testing.js
|
|
|
|
# Also include these special top-level files.
|
|
!copyright-notice.js
|
|
!copyright-notice.html
|
|
!index.html
|
|
!openmct.js
|
|
!SECURITY.md |