Releases: adonisjs/assembler
Rewrite builded Ace file
During the build process, we now rewrite from-scratch the ace.js
file included in the build
folder so as to remove all references to ts-node
. That way, you can now run node ace my-command
in your build project without having to install ts-node
.
See this issue that explains the problem : adonisjs/core#4361
Warning
Any modifications to the ace.js
file will be lost during the build process since the file is rewritten from scratch. If you want to have any additional code that runs before Ace starts, you should instead do it inside the bin/console.ts
file.
Commits
Disable experimental warnings
As of today, TSNode exports a loader hook which must be applied using the --loader
Node.js CLI flag. However, the --loader
flag was experimental and emits a warning. This release disables that warning for a nicer CLI experience.
With that said, we are waiting on Ts-node to export an import hook that can be applied using the --import
Node.js CLI flag and then we can safely remove the flags in use to suppress warnings.
Commits
Stable major release
Please consult the following release to learn more about the breaking changes
Commits
- chore: publish under latest tag 22d6926
- Merge pull request #66 from adonisjs/next 14aab7b
- Merge branch 'develop' into next 9a8d68e
- test: fix failing tests a02eaf5
- refactor: remove usage --expiremental-meta-resolve flag 831d361
- chore: bundle types.ts file via tsup as well b4ed967
- chore: update dependencies 7dad0d4
- chore(release): 5.9.6 5f23411
- test: fix breaking tests 0572331
- refactor: install @japa/[email protected] as the latest one is ESM only 330aa21
- chore: add engine key 7189b93
- chore: update dependencies 189d7b9
- fix: remove deprecated string options on examples d261515
- chore: update dependencies 4f11032
What's Changed
- refactor: use builtin
fs/promises
instead offs-extra
by @targos in #58 - fix: metafiles copying by @Julien-R44 in #60
- Add code transformer APIs by @Julien-R44 in #61
- fix(transformer): addCommand method was not using correct property name by @RomainLanz in #62
- Add
addJapaPlugin
to Codemods by @Julien-R44 in #63 - Fix metafile copying when lock file is not found by @Julien-R44 in #64
- Bundler automatically detect used package manager by @Julien-R44 in #65
- Merge to develop for final release by @thetutlage in #66
New Contributors
- @thetutlage made their first contribution in #66
Full Changelog: v5.9.6...v7.0.0
Add addPolicies codemod
Full Changelog: v7.0.0-0...v7.0.0-1
v7.0.0-0
Breaking changes
- Renamed
assets.serve
property toassets.enabled
. Since the same property is used by the bundler, theserve
is not an appropriate name. - The
addJapaPlugin
method now accepts an array of import declarations. Earlier it was a single import declaration as an object.
Features
- Use package detection when copying lockfiles to the build folder.
Commits
- test: update snapshots 9f7860f
- refactor: ignore snapshots from prettier e408ab1
- test: fix test broken on windows f455e35
- refactor: fix linting errors ba48335
- refactor: small internal refactors and add documentation 05ba15b
What's Changed
- Bundler automatically detect used package manager by @Julien-R44 in #65
Full Changelog: v6.1.3-29...v7.0.0-0
Copy dot-files from metaFiles patterns
- fix: junk files filtering logic c2ebc6a
- feat: copy dot-files and dot-folders from metaFiles patterns 55410a3
- refactor: do not watch .adonisrc.json file anymore 9f8c1b6
- fix: metafile copying when lock file is not found (#64) f3e3070
What's Changed
- Fix metafile copying when lock file is not found by @Julien-R44 in #64
Full Changelog: v6.1.3-28...v6.1.3-29
Display inter process message duration
- refactor: display inter process message duration in the welcome message 16ad6a1
Full Changelog: v6.1.3-27...v6.1.3-28
Construct click friendly URL in welcome message
- refactor: construct click friendly URL in welcome message bf3d2fb
Full Changelog: v6.1.3-26...v6.1.3-27
Add codemod to register a japa plugin
- chore: publish source maps and use tsc for generating types 62d0251
- chore: update snapshots a726c8d
- chore: update dependencies ba0b6d0
- feat: add
addJapaPlugin
to Codemods (#63) e18c64e
What's Changed
- Add
addJapaPlugin
to Codemods by @Julien-R44 in #63
Full Changelog: v6.1.3-25...v6.1.3-26
Improvements to log messages during dev server
- feat: display time taken to start the HTTP server process 2d6477d
What's Changed
- fix(transformer): addCommand method was not using correct property name by @RomainLanz in #62
Full Changelog: v6.1.3-22...v6.1.3-25