vovk 0.2.3-beta.89 → 0.2.3-beta.90

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.
@@ -98,9 +98,9 @@ type Options = typeof fetcher extends VovkClientFetcher<infer U> ? U : never;
98
98
  if(typeof window !== 'undefined') fetch(prefix + '/__ping', { method: 'POST' });
99
99
  `; */
100
100
 
101
- const localJsPath = path.join(outDir, 'index.js');
102
- const localDtsPath = path.join(outDir, 'index.d.ts');
103
- const localTsPath = path.join(outDir, 'entry.ts');
101
+ const localJsPath = path.join(outDir, 'client.js');
102
+ const localDtsPath = path.join(outDir, 'client.d.ts');
103
+ const localTsPath = path.join(outDir, 'index.ts');
104
104
  const existingJs = await fs.readFile(localJsPath, 'utf-8').catch(() => '');
105
105
  const existingDts = await fs.readFile(localDtsPath, 'utf-8').catch(() => '');
106
106
  const existingTs = await fs.readFile(localTsPath, 'utf-8').catch(() => '');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vovk",
3
- "version": "0.2.3-beta.89",
3
+ "version": "0.2.3-beta.90",
4
4
  "description": "Structural add-on for Next.js",
5
5
  "bin": "./cli/index.js",
6
6
  "scripts": {