@nextworks/blocks-core 0.1.0-alpha.11 → 0.1.0-alpha.14

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/dist/server.d.ts +2 -1
  2. package/package.json +3 -2
package/dist/server.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
 
2
2
  // Auto-generated by scripts/postbuild.js
3
- export * from "./components/AppProviders.server";
3
+ // Keep this file in sync with src/server.ts runtime exports.
4
+ export { default as AppProviders } from "./components/AppProviders.server";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextworks/blocks-core",
3
- "version": "0.1.0-alpha.11",
3
+ "version": "0.1.0-alpha.14",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -17,7 +17,8 @@
17
17
  },
18
18
  "scripts": {
19
19
  "build:types": "npx tsc -p tsconfig.build.json --emitDeclarationOnly --declaration --declarationMap --outDir dist-types",
20
- "build": "npx tsc -p tsconfig.build.json && npm run build:types && node scripts/postbuild.js"
20
+ "build": "npx tsc -p tsconfig.build.json && npm run build:types && node scripts/postbuild.js",
21
+ "test:types": "npx tsc -p tsconfig.build.json --noEmit --pretty false"
21
22
  },
22
23
  "dependencies": {
23
24
  "next-themes": "^0.4.6",