@grantbii/design-system 1.0.2 → 1.0.4

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/next.config.ts +3 -4
  2. package/package.json +1 -1
package/next.config.ts CHANGED
@@ -2,16 +2,15 @@ import type { NextConfig } from "next";
2
2
  import path from "path";
3
3
 
4
4
  const nextConfig: NextConfig = {
5
- compiler: {
6
- styledComponents: true,
7
- },
8
5
  devIndicators: false,
6
+ compiler: { styledComponents: true },
7
+ transpilePackages: ["@grantbii/design-system"],
9
8
  webpack(config) {
10
9
  // preserve any existing aliases...
11
10
  config.resolve.alias = {
12
11
  ...(config.resolve.alias ?? {}),
13
12
  // map '@' → the design-system source folder
14
- "@": path.resolve(__dirname, "node_modules/@grantbii/design-system/src"),
13
+ "@": path.resolve(__dirname, "node_modules/@grantbii/design-system"),
15
14
  };
16
15
  return config;
17
16
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grantbii/design-system",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Grantbii's Design System",
5
5
  "homepage": "https://github.com/grantbii/design-system",
6
6
  "license": "UNLICENSED",