@adonisjs/assembler 6.1.3-22 → 6.1.3-23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -139,7 +139,7 @@ export class RcFileTransformer {
139
139
  * Add a new command to the rcFile
140
140
  */
141
141
  addCommand(commandPath) {
142
- const commandsProperty = this.#getPropertyAssignmentInDefineConfigCall('providers', '[]');
142
+ const commandsProperty = this.#getPropertyAssignmentInDefineConfigCall('commands', '[]');
143
143
  const commandsArray = commandsProperty.getInitializerIfKindOrThrow(SyntaxKind.ArrayLiteralExpression);
144
144
  const commandString = `() => import('${commandPath}')`;
145
145
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@adonisjs/assembler",
3
3
  "description": "Provides utilities to run AdonisJS development server and build project for production",
4
- "version": "6.1.3-22",
4
+ "version": "6.1.3-23",
5
5
  "engines": {
6
6
  "node": ">=18.16.0"
7
7
  },