vovk 0.2.3-beta.23 → 0.2.3-beta.24

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.
@@ -6,7 +6,7 @@ const fileExists = async (path) => !!(await fs.stat(path).catch(() => false));
6
6
  async function postinstall() {
7
7
  const vovk = path.join(__dirname, '../../.vovk');
8
8
  const js = path.join(vovk, 'index.js');
9
- const ts = path.join(vovk, 'index.ts');
9
+ const ts = path.join(vovk, 'index.d.ts');
10
10
 
11
11
  if ((await fileExists(js)) || (await fileExists(ts))) {
12
12
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vovk",
3
- "version": "0.2.3-beta.23",
3
+ "version": "0.2.3-beta.24",
4
4
  "description": "Structural add-on for Next.js",
5
5
  "bin": "./cli/index.js",
6
6
  "scripts": {