We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf43d8b commit 8c8a081Copy full SHA for 8c8a081
package.json
@@ -8,6 +8,7 @@
8
"repository": "https://github.com/azz/styled-css-grid",
9
"author": "Lucas Azzola",
10
"license": "MIT",
11
+ "types": "dist/index.d.ts",
12
"files": [
13
"dist"
14
],
scripts/build.js
@@ -14,6 +14,9 @@ sh.mkdir("-p", "./website/bin");
sh.echo("bundling dist...");
15
sh.exec("rollup -c ./scripts/rollup.config.js");
16
17
+sh.echo("copying typescript definitions to dist...");
18
+sh.cp("./index.d.ts", "./dist");
19
+
20
sh.echo("bundling website...");
21
sh.exec("rollup -c ./scripts/rollup.website.config.js");
22
0 commit comments