@mastra/deployer-netlify 0.1.21-alpha.4 → 0.1.21-alpha.5

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.
@@ -34,6 +34,7 @@ export declare class NetlifyDeployer extends Deployer {
34
34
  prepare(outputDirectory: string): Promise<void>;
35
35
  bundle(entryFile: string, outputDirectory: string, toolsPaths: string[]): Promise<void>;
36
36
  private getEntry;
37
+ lint(entryFile: string, outputDirectory: string, toolsPaths: string[]): Promise<void>;
37
38
  }
38
39
 
39
40
  export { }
@@ -34,6 +34,7 @@ export declare class NetlifyDeployer extends Deployer {
34
34
  prepare(outputDirectory: string): Promise<void>;
35
35
  bundle(entryFile: string, outputDirectory: string, toolsPaths: string[]): Promise<void>;
36
36
  private getEntry;
37
+ lint(entryFile: string, outputDirectory: string, toolsPaths: string[]): Promise<void>;
37
38
  }
38
39
 
39
40
  export { }
package/dist/index.cjs CHANGED
@@ -196,6 +196,9 @@ to = "/.netlify/functions/api/:splat"
196
196
  export default handle(app)
197
197
  `;
198
198
  }
199
+ async lint(entryFile, outputDirectory, toolsPaths) {
200
+ await super.lint(entryFile, outputDirectory, toolsPaths);
201
+ }
199
202
  };
200
203
 
201
204
  exports.NetlifyDeployer = NetlifyDeployer;
package/dist/index.js CHANGED
@@ -194,6 +194,9 @@ to = "/.netlify/functions/api/:splat"
194
194
  export default handle(app)
195
195
  `;
196
196
  }
197
+ async lint(entryFile, outputDirectory, toolsPaths) {
198
+ await super.lint(entryFile, outputDirectory, toolsPaths);
199
+ }
197
200
  };
198
201
 
199
202
  export { NetlifyDeployer };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/deployer-netlify",
3
- "version": "0.1.21-alpha.4",
3
+ "version": "0.1.21-alpha.5",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "files": [
@@ -30,8 +30,8 @@
30
30
  "execa": "^9.5.2",
31
31
  "netlify-cli": "^19.0.3",
32
32
  "zod": "^3.24.2",
33
- "@mastra/core": "^0.9.2-alpha.4",
34
- "@mastra/deployer": "^0.3.2-alpha.4"
33
+ "@mastra/core": "^0.9.2-alpha.5",
34
+ "@mastra/deployer": "^0.3.2-alpha.5"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@microsoft/api-extractor": "^7.52.5",