webinstall / webi-installer-requests

This is just to house issues for requests for new Webi installers.
Mozilla Public License 2.0
5 stars 7 forks source link

meta package for node-essentials #67

Open coolaj86 opened 8 months ago

coolaj86 commented 8 months ago

The goal is to have a vanilla js node-essentials meta package, similar to vim-essentials, but using npm as the primary installer.

This would be super easy just from looking at the example of prettier and vim-essentials.

I'd debate whether or not typescript should be included since it's so large and heavy handed, but I don't know of a better type-checking tool for vanilla js at the moment.

(
  cd /tmp/
  npm install --location=global \
    jshint@2.x \
    prettier@3.x \
    typescript@5.x \
    uglify-js@3.x \
    fixjson@1.x \
    jswt@1.x
)
sipher-01 commented 8 months ago

so, you want to just install the meta packages and create a json file and upload that .

coolaj86 commented 8 months ago

@sipher-01 look at the examples of the vim-essentials and go-essentials and prettier in this repo.