@php-wasm/universal 0.1.40 → 0.1.41

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.
@@ -1,20 +0,0 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "../../dist/out-tsc",
5
- "types": ["vitest/globals", "vitest/importMeta", "vite/client", "node"]
6
- },
7
- "include": [
8
- "vite.config.ts",
9
- "src/**/*.test.ts",
10
- "src/**/*.spec.ts",
11
- "src/**/*.test.tsx",
12
- "src/**/*.spec.tsx",
13
- "src/**/*.test.js",
14
- "src/**/*.spec.js",
15
- "src/**/*.test.jsx",
16
- "src/**/*.spec.jsx",
17
- "src/**/*.d.ts",
18
- "src/lib/php-vars.ts"
19
- ]
20
- }
package/vite.config.ts DELETED
@@ -1,47 +0,0 @@
1
- /// <reference types="vitest" />
2
- import { defineConfig } from 'vite';
3
-
4
- import viteTsConfigPaths from 'vite-tsconfig-paths';
5
- import dts from 'vite-plugin-dts';
6
- import { join } from 'path';
7
-
8
- export default defineConfig({
9
- cacheDir: '../../../node_modules/.vite/php-wasm-universal',
10
-
11
- plugins: [
12
- dts({
13
- entryRoot: 'src',
14
- tsConfigFilePath: join(__dirname, 'tsconfig.lib.json'),
15
- skipDiagnostics: true,
16
- }),
17
-
18
- viteTsConfigPaths({
19
- root: '../../../',
20
- }),
21
- ],
22
-
23
- // Configuration for building your library.
24
- // See: https://vitejs.dev/guide/build.html#library-mode
25
- build: {
26
- lib: {
27
- // Could also be a dictionary or array of multiple entry points.
28
- entry: 'src/index.ts',
29
- name: 'php-wasm-universal',
30
- fileName: 'index',
31
- formats: ['es', 'cjs'],
32
- },
33
- rollupOptions: {
34
- // External packages that should not be bundled into your library.
35
- external: [],
36
- },
37
- },
38
-
39
- test: {
40
- globals: true,
41
- cache: {
42
- dir: '../../../node_modules/.vitest',
43
- },
44
- environment: 'jsdom',
45
- include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
46
- },
47
- });
File without changes