@kopflos-cms/vite 0.0.1-beta.0 → 0.0.1-beta.1

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 ADDED
@@ -0,0 +1,18 @@
1
+ # @kopflos-cms/vite
2
+
3
+ ## 0.0.1-beta.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 67ba100: Added CHANGELOG.md to build
8
+ - 67ba100: Added type augmentation of plugin config interface
9
+ - Updated dependencies [67ba100]
10
+ - @kopflos-cms/logger@0.1.0-beta.1
11
+
12
+ ## 0.0.1-beta.0
13
+
14
+ ### Patch Changes
15
+
16
+ - 730ecc2: Ensure the the `outDir` setting is also used for serving files in in production mode
17
+ - Updated dependencies [730ecc2]
18
+ - @kopflos-cms/logger@0.1.0-beta.0
package/index.d.ts CHANGED
@@ -6,4 +6,9 @@ export interface Options {
6
6
  outDir?: string;
7
7
  entrypoints?: string[];
8
8
  }
9
+ declare module '@kopflos-cms/core' {
10
+ interface PluginConfig {
11
+ '@kopflos-cms/vite'?: Options;
12
+ }
13
+ }
9
14
  export default function ({ outDir, ...options }: Options): KopflosPlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kopflos-cms/vite",
3
- "version": "0.0.1-beta.0",
3
+ "version": "0.0.1-beta.1",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "author": "Zazuko GmbH",
@@ -11,6 +11,7 @@
11
11
  "prepack": "npm run build"
12
12
  },
13
13
  "files": [
14
+ "CHANGELOG.md",
14
15
  "lib/*.js",
15
16
  "lib/*.d.ts",
16
17
  "*.js",
@@ -26,7 +27,7 @@
26
27
  },
27
28
  "homepage": "https://github.com/zazuko/kopflos",
28
29
  "dependencies": {
29
- "@kopflos-cms/logger": "^0.1.0-beta.0",
30
+ "@kopflos-cms/logger": "^0.1.0-beta.1",
30
31
  "express": "^5.0.1",
31
32
  "glob": "^11.0.0",
32
33
  "onetime": "^7.0.0",