@causw/design-system 0.0.6 → 0.0.8

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.js CHANGED
@@ -1,30 +1,33 @@
1
- "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __copyProps = (to, from, except, desc) => {
7
- if (from && typeof from === "object" || typeof from === "function") {
8
- for (let key of __getOwnPropNames(from))
9
- if (!__hasOwnProp.call(to, key) && key !== except)
10
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11
- }
12
- return to;
13
- };
14
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
15
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
1
+ 'use strict';
16
2
 
17
- // src/index.ts
18
- var index_exports = {};
19
- module.exports = __toCommonJS(index_exports);
20
- __reExport(index_exports, require("@causw/core"), module.exports);
21
- __reExport(index_exports, require("@causw/tokens"), module.exports);
22
- __reExport(index_exports, require("@causw/components"), module.exports);
23
- __reExport(index_exports, require("@causw/icons"), module.exports);
24
- // Annotate the CommonJS export names for ESM import in node:
25
- 0 && (module.exports = {
26
- ...require("@causw/core"),
27
- ...require("@causw/tokens"),
28
- ...require("@causw/components"),
29
- ...require("@causw/icons")
3
+ var core = require('@causw/core');
4
+ var tokens = require('@causw/tokens');
5
+ var components = require('@causw/components');
6
+ var icons = require('@causw/icons');
7
+
8
+
9
+
10
+ Object.keys(core).forEach(function (k) {
11
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
12
+ enumerable: true,
13
+ get: function () { return core[k]; }
14
+ });
15
+ });
16
+ Object.keys(tokens).forEach(function (k) {
17
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
18
+ enumerable: true,
19
+ get: function () { return tokens[k]; }
20
+ });
21
+ });
22
+ Object.keys(components).forEach(function (k) {
23
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
24
+ enumerable: true,
25
+ get: function () { return components[k]; }
26
+ });
27
+ });
28
+ Object.keys(icons).forEach(function (k) {
29
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
30
+ enumerable: true,
31
+ get: function () { return icons[k]; }
32
+ });
30
33
  });
package/dist/index.mjs CHANGED
@@ -1,5 +1,4 @@
1
- // src/index.ts
2
- export * from "@causw/core";
3
- export * from "@causw/tokens";
4
- export * from "@causw/components";
5
- export * from "@causw/icons";
1
+ export * from '@causw/core';
2
+ export * from '@causw/tokens';
3
+ export * from '@causw/components';
4
+ export * from '@causw/icons';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@causw/design-system",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "CAUSW Design System - Complete design system for CAU Software Community Service",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -16,22 +16,10 @@
16
16
  "dist"
17
17
  ],
18
18
  "dependencies": {
19
- "@causw/core": "0.0.2",
20
- "@causw/tokens": "0.0.4",
21
- "@causw/components": "0.0.4",
22
- "@causw/icons": "0.0.4"
23
- },
24
- "peerDependencies": {
25
- "react": "^18.2.0",
26
- "react-dom": "^18.2.0"
27
- },
28
- "devDependencies": {
29
- "@types/react": "^18.2.0",
30
- "@types/react-dom": "^18.2.0",
31
- "react": "^18.2.0",
32
- "react-dom": "^18.2.0",
33
- "tsup": "^8.0.0",
34
- "typescript": "^5.3.0"
19
+ "@causw/core": "0.0.4",
20
+ "@causw/tokens": "0.0.6",
21
+ "@causw/components": "0.0.6",
22
+ "@causw/icons": "0.0.6"
35
23
  },
36
24
  "repository": {
37
25
  "type": "git",
@@ -42,8 +30,9 @@
42
30
  "access": "public",
43
31
  "provenance": true
44
32
  },
33
+ "sideEffects": false,
45
34
  "scripts": {
46
- "build": "tsup src/index.ts --format cjs,esm --dts --external react",
35
+ "build": "tsup src/index.ts --format cjs,esm --dts --external react --treeshake",
47
36
  "dev": "tsup src/index.ts --format cjs,esm --dts --external react --watch",
48
37
  "lint": "eslint src",
49
38
  "test": "echo \"No tests yet\""