Skip to content
This repository was archived by the owner on Mar 6, 2025. It is now read-only.

Releases: stormode/stormode

0.6.1

12 Jun 16:27

Choose a tag to compare

What's Changed

  • Update dependencies
  • Fix for the missing support of custom config file

0.6.0

07 Jun 11:46

Choose a tag to compare

What's Changed

Create Stormode:

  • Reduce package size
  • Update dependencies
  • Update tsconfig.json
  • Update templates

Stormode:

  • Update dependencies
  • Increase the performance of transpilation
  • Update cache path:
    • from ./node_modules/.cache/stormode
    • to ./node_modules/.stormode

0.5.2

26 Mar 06:25

Choose a tag to compare

What's Changed

Create Stormode:

  • Update .gitattributes

Stormode:

  • Update SWC configuration to fix related error on macOS

0.5.1

25 Mar 17:27

Choose a tag to compare

What's Changed

  • Fix on env
  • Add the missing support for transpiling jsx and tsx

0.5.0

25 Mar 15:46

Choose a tag to compare

What's New

Create Stormode:

  • Add .gitattributes
  • Add .env

Stormode:

  • Add config: swc, build.esbuild
  • Add SWC for transpilation
  • Add dotenv-expand for env variable expansion

What's Changed

Create Stormode:

  • Update templates
  • Update package.json script
  • Update tsconfig.json default configuration
  • Generate blank .env.development & .env.production when using vanilla

Stormode:

  • Deprecate config: build.platform
  • No longer using tsc for transpilation
  • Better support on ES Module
  • Better support on monorepo
  • Fix the parsing issue in json file
  • Update progress behaviour on exit and error

Migrate from v0.4.x

to keep type checking your TypeScript code, add tsc command before stormode build:

tsc && stormode build

and add noEmit to tsconfig.json to prevent tsc generate any file:

{
    "compilerOptions": {
        "noEmit": true
    }
}

0.4.1

19 Mar 05:54

Choose a tag to compare

What's Changed

Stormode:

  • Fix for using Stormode in JavaScript

0.4.0

18 Mar 13:05

Choose a tag to compare

What's New

Stormode:

  • Add bundle mode
  • Add new config: withTime, build.platform, build.bundle

Stormode Terminal:

  • Add function: withConfig, custom
  • Add config: mute, time

What's Changed

Stormode:

  • Better terminal message
  • Better source map support
  • Better monorepo support
  • Deprecate config: sourcemap, build.tsconfig

Stormode Terminal:

  • Deprecate config: mode

0.3.1

23 Aug 11:00

Choose a tag to compare

What's Changed

  • Fix the issue that the process cannot access the files by adding retry.

0.3.0

23 Aug 06:14

Choose a tag to compare

What's New

  • You can now start with Fastify in create-stormode
  • Add more parameters for the commands

What's Changed

  • Structure rework
  • Fix for missing env loading
  • Config file changes
  • Remove nodemon, @types/nodemon
  • Remove tsconfig-paths
  • No longer require ts-node to be installed

0.2.1

13 Aug 10:22

Choose a tag to compare

What's New

  • stormode.config.ts will be added by default if you are using TypeScript in create-stormode.

What's Changed

  • create-stormode now come with blank Stormode config file by default.
  • Increase the compatibilities between JavaScript, TypeScript, CommonJS and ESModule in Stormode config file.