This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/vscode-extension-tester-5.8.0
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git
discard 5d41d98 Bump vscode-extension-tester from 5.5.2 to 5.8.0
add 6b4b01f Fix hierarchy default values. Update how yarn scripts are ran.
add c7b0b51 Multiple Launch Wizard updates:
add 044fa77 Relay parse assertion failures to debug console.
add 778d818 Multiple updates:
add d940020 Bump vscode-extension-tester from 5.5.2 to 5.8.0
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (5d41d98)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/vscode-extension-tester-5.8.0 (d940020)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.gitignore | 2 +
.prettierignore | 4 +-
README.md | 3 +-
build/extension.webpack.config.js | 56 ------
build/package/.vscodeignore | 36 ----
build/scripts/package.ts | 93 ----------
build/yarn-scripts.ts | 129 ++++++++++++++
debugger/nodemon.json | 13 ++
.../org.apache.daffodil.debugger.dap/Parse.scala | 65 ++++---
package.json | 166 ++++++++----------
project/Rat.scala | 4 +-
src/classes/artifact.ts | 14 +-
src/classes/dataEditor.ts | 5 +-
src/classes/{tdmlConfig.ts => dfdlDebugger.ts} | 9 +-
.../src/global.d.ts => classes/loggingConfig.ts} | 5 +-
src/classes/vscode-launch.ts | 18 +-
src/daffodilDebugger/daffodil.ts | 1 +
src/daffodilDebugger/debugger.ts | 61 +------
src/daffodilDebugger/utils.ts | 27 +--
src/launchWizard/launchWizard.js | 65 +++++--
src/launchWizard/launchWizard.ts | 36 ++--
src/tests/suite/daffodil.test.ts | 4 +-
src/tests/suite/daffodilDebugger.test.ts | 23 ++-
src/tests/suite/utils.test.ts | 19 ++-
src/tests/suite/version.test.ts | 7 +-
src/utils.ts | 84 +++------
tsconfig.json | 2 +-
webpack/ext-dev.webpack.config.js | 105 ++++++++++++
webpack/ext-package.webpack.config.js | 161 ++++++++++++++++++
yarn.lock | 189 +++++++++++++++++++--
30 files changed, 840 insertions(+), 566 deletions(-)
delete mode 100644 build/extension.webpack.config.js
delete mode 100644 build/package/.vscodeignore
delete mode 100644 build/scripts/package.ts
create mode 100644 build/yarn-scripts.ts
create mode 100644 debugger/nodemon.json
copy src/classes/{tdmlConfig.ts => dfdlDebugger.ts} (87%)
copy src/{svelte/src/global.d.ts => classes/loggingConfig.ts} (92%)
create mode 100644 webpack/ext-dev.webpack.config.js
create mode 100644 webpack/ext-package.webpack.config.js