Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Transpile js #88

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Transpile js #88

wants to merge 4 commits into from

Commits on Apr 14, 2021

  1. Do not call obsolete postinstall script.

    The `vscode.d.ts` file is not installed by the `postinstall` script of
    the `vscode` package anymore. It is now contained in `@types/vscode` on
    NPM.
    
    See https://code.visualstudio.com/updates/v1_36#_splitting-vscode-package-into-typesvscode-and-vscodetest
    braunse committed Apr 14, 2021
    Configuration menu
    Copy the full SHA
    2a4adc8 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2021

  1. Make "npm run build" actually build something

    The `imba build` command referenced in the `build` script does not
    work. What actually needs to be built seem to be the
    `client/dist/src/index.js` and `server/dist/src/index.js` files.
    This change builds these files explicitly.
    braunse committed Apr 15, 2021
    Configuration menu
    Copy the full SHA
    9d81b38 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3f2f435 View commit details
    Browse the repository at this point in the history
  3. Transpile javascript for Node compatibility.

    The compiled javascript uses the `??` and `?.` operators which are not
    compatible with the Node version that VS Code bundles. To avoid this,
    the compiled javascript is postprocessed with Babel to replace these
    operators by expressions that are supported by Node v12.18.3.
    braunse committed Apr 15, 2021
    Configuration menu
    Copy the full SHA
    0396d9b View commit details
    Browse the repository at this point in the history