@mastra/deployer-netlify 0.0.1-alpha.20 → 0.0.1-alpha.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.
- package/CHANGELOG.md +28 -0
- package/package.json +9 -17
- package/tsconfig.json +1 -6
- package/vitest.config.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @mastra/deployer-netlify
|
|
2
2
|
|
|
3
|
+
## 0.0.1-alpha.23
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [685108a]
|
|
8
|
+
- Updated dependencies [685108a]
|
|
9
|
+
- @mastra/deployer@0.0.1-alpha.22
|
|
10
|
+
- @mastra/core@0.1.27-alpha.78
|
|
11
|
+
|
|
12
|
+
## 0.0.1-alpha.22
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 2b75edf: mastra deployers tsup bundling
|
|
17
|
+
- Updated dependencies [8105fae]
|
|
18
|
+
- Updated dependencies [cfb966f]
|
|
19
|
+
- @mastra/core@0.1.27-alpha.77
|
|
20
|
+
- @mastra/deployer@0.0.1-alpha.21
|
|
21
|
+
|
|
22
|
+
## 0.0.1-alpha.21
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [ae7bf94]
|
|
27
|
+
- Updated dependencies [ae7bf94]
|
|
28
|
+
- @mastra/deployer@0.0.1-alpha.20
|
|
29
|
+
- @mastra/core@0.1.27-alpha.76
|
|
30
|
+
|
|
3
31
|
## 0.0.1-alpha.20
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,21 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/deployer-netlify",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.23",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
|
-
"module": "dist/deployer-netlify.esm.js",
|
|
8
7
|
"types": "dist/index.d.ts",
|
|
9
8
|
"exports": {
|
|
10
9
|
".": {
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
"default": "./dist/deployer-netlify.esm.js"
|
|
14
|
-
},
|
|
15
|
-
"require": {
|
|
16
|
-
"types": "./dist/index.d.ts",
|
|
17
|
-
"default": "./dist/index.js"
|
|
18
|
-
}
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"default": "./dist/index.js"
|
|
19
12
|
},
|
|
20
13
|
"./package.json": "./package.json"
|
|
21
14
|
},
|
|
@@ -28,21 +21,20 @@
|
|
|
28
21
|
"execa": "^9.3.1",
|
|
29
22
|
"netlify-cli": "^18.0.1",
|
|
30
23
|
"zod": "^3.24.1",
|
|
31
|
-
"@mastra/
|
|
32
|
-
"@mastra/
|
|
24
|
+
"@mastra/deployer": "0.0.1-alpha.22",
|
|
25
|
+
"@mastra/core": "0.1.27-alpha.78"
|
|
33
26
|
},
|
|
34
27
|
"devDependencies": {
|
|
35
28
|
"@babel/preset-env": "^7.26.0",
|
|
36
29
|
"@babel/preset-typescript": "^7.26.0",
|
|
37
30
|
"@tsconfig/recommended": "^1.0.7",
|
|
38
|
-
"@types/jsdom": "^21.1.7",
|
|
39
31
|
"@types/node": "^22.9.0",
|
|
40
|
-
"
|
|
41
|
-
"vitest": "^
|
|
32
|
+
"tsup": "^8.0.1",
|
|
33
|
+
"vitest": "^3.0.4"
|
|
42
34
|
},
|
|
43
35
|
"scripts": {
|
|
44
|
-
"build": "dts
|
|
45
|
-
"
|
|
36
|
+
"build": "tsup-node src/index.ts --format esm --dts --clean --treeshake",
|
|
37
|
+
"dev": "tsup-node src/index.ts --format esm --dts --clean --treeshake --watch",
|
|
46
38
|
"test": "vitest run"
|
|
47
39
|
}
|
|
48
40
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extends": "../../tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"moduleResolution": "bundler",
|
|
5
|
-
"outDir": "./dist",
|
|
6
|
-
"rootDir": "./src"
|
|
7
|
-
},
|
|
2
|
+
"extends": "../../tsconfig.node.json",
|
|
8
3
|
"include": ["src/**/*"],
|
|
9
4
|
"exclude": ["node_modules", "**/*.test.ts"]
|
|
10
5
|
}
|