mirror of
https://github.com/nasa/openmct.git
synced 2024-12-18 20:57:53 +00:00
091f6406a8
* Bump version to `2.1.2` * Ensure properties stay in sync and are committed only once (#5717) * Ensure form properties stay in sync * Separate out overlay based forms and custom forms * Use a transaction to save properties * Fix GaugeController to not depend on event emitted from FormsAPI * refactor showForms to call showCustomForm Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andrew Henry <akhenry@gmail.com> * Fix persistence timestamp (#5916) * Calculate persisted timestamp last * Added regression tests * Correct transaction handling code * Code cleanup * Fix typo for publish (#5936) * Add e2e tests to npm package (#5930) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Shefali Joshi <simplyrender@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andrew Henry <akhenry@gmail.com> Co-authored-by: John Hill <john.c.hill@nasa.gov>
31 lines
696 B
Plaintext
31 lines
696 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/**/*
|
|
|
|
# ...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
|
|
|
|
# Add e2e tests to npm package
|
|
!/e2e/**/*
|
|
|
|
# ... except our test-data folder files.
|
|
/e2e/test-data/*.json
|