Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Feb 27, 2026. It is now read-only.

Latest commit

 

History

History

README.md

Do not delete vscode-language-services.

needed by vue language

update package.json version
npm run tar
npm run bl && npm run bw
npm run test-build
npm run release
npm run upload
npm run notes //to social.quarkjs.io
npm run land
npm run test

make sure to run npm run test in view git commit and push npm run release-master-all npm run release-ci

npm run release-insiders
npm run test

Features:

Bug fixes:

Other changes:

Dependencies:

Minor Changes:

Major Changes:

Breaking:

add .quarkignore like vscode ignore

Packaged

Directly started: == shortcut

  • process.argv.length = 1;
  • process.argv[0] = 'exe' path;

File opened start:

  • process.argv.length = 2;
  • process.argv[0] = 'exe' path && process.argv[1] = 'file-path';

Not-Packaged

Directly started:

  • process.argv.length = 2;
  • process.argv[0] = 'exe' path && process.argv[1] = 'working dir';

File opened start:

  • process.argv.length = 3;
  • process.argv[0] = 'exe' path && process.argv[1] = 'working dir'; && process.argv[2] = 'file-path'