stable

Clone or download

Read-only

Replace relative import of TQL CodeMirror with a package import

Note that CodeMirror was upgraded (5.62.0 -> 5.65.3) with its move to the library. See changelog here: https://github.com/codemirror/CodeMirror/blob/5.65.3/CHANGELOG.md Part of request #26381: Prevent relative imports outside of a package Change-Id: I2a4040a6c83da38a6139ed8e8a09b7fa37972dca

Modified Files

Name
M plugins/crosstracker/package.json +1 −1 Go to diff View file
M plugins/crosstracker/pnpm-lock.yaml +2 −18 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/QueryEditor.vue +4 −4 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/__snapshots__/QueryEditor.test.ts.snap +2 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/tql-configuration.ts +1 −1 Go to diff View file
M plugins/crosstracker/themes/_query-edition.scss +2 −2 Go to diff View file
M plugins/tracker/package.json +1 −2 Go to diff View file
M plugins/tracker/pnpm-lock.yaml +2 −24 Go to diff View file
A plugins/tracker/scripts/lib/TQL-CodeMirror/.gitignore +1 −0 Go to diff View file
A plugins/tracker/scripts/lib/TQL-CodeMirror/README.md +5 −0 Go to diff View file
A plugins/tracker/scripts/lib/TQL-CodeMirror/package.json +23 −0 Go to diff View file
A plugins/tracker/scripts/lib/TQL-CodeMirror/pnpm-lock.yaml +35 −0 Go to diff View file
R plugins/tracker/scripts/report/TQL-CodeMirror/allowed-field-inserter.d.ts Go to diff View file
R plugins/tracker/scripts/report/TQL-CodeMirror/allowed-field-inserter.js Go to diff View file
R plugins/tracker/scripts/report/TQL-CodeMirror/autocompleter.js Go to diff View file
R plugins/tracker/scripts/report/TQL-CodeMirror/builder.js Go to diff View file
R plugins/tracker/scripts/report/TQL-CodeMirror/configuration.js Go to diff View file
R plugins/tracker/scripts/report/TQL-CodeMirror/configuration.d.ts Go to diff View file
R plugins/tracker/scripts/report/TQL-CodeMirror/builder.d.ts Go to diff View file
A plugins/tracker/scripts/lib/TQL-CodeMirror/tsconfig.json +7 −0 Go to diff View file
A plugins/tracker/scripts/lib/TQL-CodeMirror/vite.config.ts +37 −0 Go to diff View file
M plugins/tracker/scripts/report/expert-mode.js +9 −6 Go to diff View file
M plugins/tracker/themes/default/css/style.scss +1 −2 Go to diff View file