/systemjs-babel-es6-vue

Vue with alias & ES modules but without bundlers Webpack/Rollup/ESbuild

Primary LanguageJavaScript

tsconfig and importmap

Easy standardized configuration in this configuration hell of custom plugins. tsconfig is used to define project aliases to folders (even to single file). Why aliases? importmap is used to resolve imports to get paths of cdns for js libraries.

importmaps are fixed with package.json dependencies versions with mustache.render and used to resolve (rewrite names to uri paths) modules by @snowpack/babel-plugin-package-import at resolve-alias stage

Babel

Transform-plugins to resolve project alias & extensions:

Jest can run ES modules with two Babel ways:

  • Run jest as usual commonjs by package.json > scripts: "test": "jest --runInBand --no-cache" and jest-esm-transformer with "transform" setting for jest config and without babel config.
  • Native esm by package.json > scripts: "test": "set NODE_ENV=envJest&&node -r esm ./node_modules/jest/bin/jest.js --runInBand --no-cache" without any "transform" setting but babel.config.json: {"env": {"envJest": {"presets": ["@babel/preset-env"]}}}

Jest

Jest is not ready for esm and uses Babel transformations spec-files to CommonJs. "@jest/globals" for strict esm *.spec.* files, to free from option "testEnvironment": "jsdoc".

ESLint

rules:

imports:

LintHtml

CSS @import paths resolving

Nowadays is very popular CSS-in-JS, it is not our case (Babel plugins for CSS aren't suitable). This project use classic practice without importing css files into js.

Alias solutions (isn't used):

But I don't need another config "aliases" format, I need tsconfig paths support! Found tsconfig format compatible solution for sass (but I don't use SASS here): sass-extended-importer.

For *.css files with @import tsconfig paths I made utility script tsconfig-path-resolver.js based on:

  • arg for cli set config path;
  • find-root for utility paths independence;
  • readdirp to get all paths by file extension mask;
  • tsconfig-paths for resolving paths by tsconfig settings. Utility isn't inlining content from resolved path files, only paths rewrited.

Minify

This project isn't used any bundlers, all steps realised as npm scripts. Therefore, separate core modules are used for minifying.

CSS code conventions

Not using scoped CSS, prior to BEM methodology in iAMCss interpretation (also see main.css). Native CSS-variables used with iAMCss theming (theming live demo) and iAMCss naming. CSSO about variables.

CSS styleguides

What recommendations to complement BEM/iAMCss, do we have?

CSS Linting

Based on trends, Stylelint has no competitors! Bunch of configs favorited here, some of them:

IE11

This browser isn't supported es-modules from the box, therefeore this project is used two deploying ways: esm-build and sys-build (SystemJS). Also is not supported css-variables, therefore this project is used ie11-custom-properties polyfill with known bugs: 92 (inline @import files workaround) and IE can't use initial value (workaround postcss-initial).

No need for project but peer dependencies =(