@causw/design-system 0.0.13 → 0.0.15

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.
package/dist/index.cjs ADDED
@@ -0,0 +1,25 @@
1
+
2
+
3
+ var _causw_core = require("@causw/core");
4
+ Object.keys(_causw_core).forEach(function (k) {
5
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
6
+ enumerable: true,
7
+ get: function () { return _causw_core[k]; }
8
+ });
9
+ });
10
+
11
+ var _causw_tokens = require("@causw/tokens");
12
+ Object.keys(_causw_tokens).forEach(function (k) {
13
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
14
+ enumerable: true,
15
+ get: function () { return _causw_tokens[k]; }
16
+ });
17
+ });
18
+
19
+ var _causw_icons = require("@causw/icons");
20
+ Object.keys(_causw_icons).forEach(function (k) {
21
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
22
+ enumerable: true,
23
+ get: function () { return _causw_icons[k]; }
24
+ });
25
+ });
@@ -0,0 +1,3 @@
1
+ export * from "@causw/core";
2
+ export * from "@causw/tokens";
3
+ export * from "@causw/icons";
package/dist/index.d.mts CHANGED
@@ -1,3 +1,3 @@
1
- export * from '@causw/core';
2
- export * from '@causw/tokens';
3
- export * from '@causw/icons';
1
+ export * from "@causw/core";
2
+ export * from "@causw/tokens";
3
+ export * from "@causw/icons";
package/dist/index.mjs CHANGED
@@ -1,3 +1,7 @@
1
- export * from '@causw/core';
2
- export * from '@causw/tokens';
3
- export * from '@causw/icons';
1
+ export * from "@causw/core"
2
+
3
+ export * from "@causw/tokens"
4
+
5
+ export * from "@causw/icons"
6
+
7
+ export { };
package/package.json CHANGED
@@ -1,24 +1,29 @@
1
1
  {
2
2
  "name": "@causw/design-system",
3
- "version": "0.0.13",
3
+ "version": "0.0.15",
4
4
  "description": "CAUSW Design System - Complete design system for CAU Software Community Service",
5
- "main": "dist/index.js",
5
+ "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",
7
- "types": "dist/index.d.ts",
7
+ "types": "dist/index.d.cts",
8
8
  "exports": {
9
9
  ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.mjs",
12
- "require": "./dist/index.js"
10
+ "import": {
11
+ "types": "./dist/index.d.mts",
12
+ "default": "./dist/index.mjs"
13
+ },
14
+ "require": {
15
+ "types": "./dist/index.d.cts",
16
+ "default": "./dist/index.cjs"
17
+ }
13
18
  }
14
19
  },
15
20
  "files": [
16
21
  "dist"
17
22
  ],
18
23
  "dependencies": {
19
- "@causw/core": "0.0.9",
20
- "@causw/tokens": "0.0.10",
21
- "@causw/icons": "0.0.8"
24
+ "@causw/core": "0.0.11",
25
+ "@causw/tokens": "0.0.12",
26
+ "@causw/icons": "0.0.9"
22
27
  },
23
28
  "repository": {
24
29
  "type": "git",
@@ -31,8 +36,8 @@
31
36
  },
32
37
  "sideEffects": false,
33
38
  "scripts": {
34
- "build": "tsup src/index.ts --format cjs,esm --dts --external react --treeshake",
35
- "dev": "tsup src/index.ts --format cjs,esm --dts --external react --watch",
39
+ "build": "tsdown",
40
+ "dev": "tsdown --watch",
36
41
  "lint": "eslint src",
37
42
  "test": "echo \"No tests yet\""
38
43
  }
package/dist/index.d.ts DELETED
@@ -1,3 +0,0 @@
1
- export * from '@causw/core';
2
- export * from '@causw/tokens';
3
- export * from '@causw/icons';
package/dist/index.js DELETED
@@ -1,26 +0,0 @@
1
- 'use strict';
2
-
3
- var core = require('@causw/core');
4
- var tokens = require('@causw/tokens');
5
- var icons = require('@causw/icons');
6
-
7
-
8
-
9
- Object.keys(core).forEach(function (k) {
10
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
11
- enumerable: true,
12
- get: function () { return core[k]; }
13
- });
14
- });
15
- Object.keys(tokens).forEach(function (k) {
16
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
17
- enumerable: true,
18
- get: function () { return tokens[k]; }
19
- });
20
- });
21
- Object.keys(icons).forEach(function (k) {
22
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
23
- enumerable: true,
24
- get: function () { return icons[k]; }
25
- });
26
- });