@brillout/docpress 0.0.45 → 0.0.46

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/vite.config.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brillout/docpress",
3
- "version": "0.0.45",
3
+ "version": "0.0.46",
4
4
  "exports": {
5
5
  ".": "./src/index.ts",
6
6
  "./client/initFeatureList": {
package/vite.config.ts CHANGED
@@ -24,9 +24,9 @@ const config: UserConfig = {
24
24
  noExtraDir: true
25
25
  },
26
26
  pageFiles: {
27
- include: ['docpress']
27
+ include: ['@brillout/docpress']
28
28
  },
29
- includeCSS: ['docpress'],
29
+ includeCSS: ['@brillout/docpress'],
30
30
  includeAssetsImportedByServer: true
31
31
  })
32
32
  ],
@@ -34,7 +34,7 @@ const config: UserConfig = {
34
34
  optimizeDeps: { include: ['@mdx-js/react', 'react', 'react-dom'] },
35
35
  // @ts-ignore
36
36
  ssr: {
37
- noExternal: ['docpress']
37
+ noExternal: ['@brillout/docpress']
38
38
  },
39
39
  clearScreen: false
40
40
  }