@prosopo/client-bundle-example 2.9.4 → 2.9.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @prosopo/client-bundle-example
2
2
 
3
+ ## 2.9.5
4
+ ### Patch Changes
5
+
6
+ - 91d56e7: enable nx caching
7
+ - 828066d: remove empty test npm scripts, add missing npm test scripts
8
+ - 91bbe87: configure typecheck before bundle for vue packages
9
+ - 91bbe87: make typecheck script always recompile
10
+ - 346e092: NODE_ENV default to "development"
11
+ - 5d36e05: remove tsc --force
12
+ - Updated dependencies [828066d]
13
+ - Updated dependencies [91bbe87]
14
+ - Updated dependencies [3ef4fd2]
15
+ - Updated dependencies [91bbe87]
16
+ - Updated dependencies [346e092]
17
+ - Updated dependencies [5d36e05]
18
+ - @prosopo/config@3.1.3
19
+
3
20
  ## 2.9.4
4
21
  ### Patch Changes
5
22
 
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+
package/package.json CHANGED
@@ -16,24 +16,23 @@
16
16
  },
17
17
  "scripts": {
18
18
  "clean": "del-cli --verbose dist tsconfig.tsbuildinfo",
19
- "build": "NODE_ENV=${NODE_ENV:-production}; vite build --config vite.esm.config.ts --mode $NODE_ENV",
20
- "build:cjs": "NODE_ENV=${NODE_ENV:-production}; vite build --config vite.cjs.config.ts --mode $NODE_ENV",
21
- "bundle": "NODE_ENV=${NODE_ENV:-production}; vite build --config vite.config.ts --mode $NODE_ENV",
22
- "typecheck": "tsc --build --declaration --emitDeclarationOnly --force",
23
- "test": "echo no tests",
19
+ "build": "NODE_ENV=${NODE_ENV:-development}; vite build --config vite.esm.config.ts --mode $NODE_ENV",
20
+ "build:cjs": "NODE_ENV=${NODE_ENV:-development}; vite build --config vite.cjs.config.ts --mode $NODE_ENV",
21
+ "bundle": "NODE_ENV=${NODE_ENV:-development}; vite build --config vite.config.ts --mode $NODE_ENV",
22
+ "typecheck": "tsc --build --declaration --emitDeclarationOnly",
24
23
  "start": "NODE_ENV=${NODE_ENV:-development}; vite serve ./src --port 9232 --config vite.config.ts --mode=$NODE_ENV"
25
24
  },
26
- "version": "2.9.4",
25
+ "version": "2.9.5",
27
26
  "dependencies": {
28
27
  "@typegoose/auto-increment": "4.13.0",
29
28
  "axios": "1.10.0",
30
29
  "esbuild": "0.25.6",
31
30
  "openpgp": "5.11.3",
32
31
  "webpack-dev-server": "5.2.2",
33
- "@prosopo/config": "3.1.2"
32
+ "@prosopo/config": "3.1.3"
34
33
  },
35
34
  "devDependencies": {
36
- "@prosopo/dotenv": "3.0.6",
35
+ "@prosopo/dotenv": "3.0.7",
37
36
  "@types/node": "22.5.5",
38
37
  "@vitest/coverage-v8": "3.0.9",
39
38
  "concurrently": "9.0.1",
package/vite.config.ts CHANGED
@@ -141,7 +141,7 @@ export default defineConfig(({ command, mode }) => {
141
141
  transformMixedEsModules: true,
142
142
  },
143
143
  outDir: "dist",
144
- emptyOutDir: true,
144
+ emptyOutDir: false,
145
145
  rollupOptions: {
146
146
  input: {
147
147
  index: path.resolve(__dirname, "src/index.html"),