@causw/core 0.0.2 → 0.0.3

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,18 +1,2 @@
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 __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
1
+ 'use strict';
15
2
 
16
- // src/index.ts
17
- var index_exports = {};
18
- module.exports = __toCommonJS(index_exports);
package/dist/index.mjs CHANGED
@@ -0,0 +1 @@
1
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@causw/core",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Core utilities and logging for CAUSW Design System - CAU Software Community Service",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -15,10 +15,6 @@
15
15
  "files": [
16
16
  "dist"
17
17
  ],
18
- "devDependencies": {
19
- "tsup": "^8.0.0",
20
- "typescript": "^5.3.0"
21
- },
22
18
  "repository": {
23
19
  "type": "git",
24
20
  "url": "https://github.com/CAUCSE/CAUSW-frontend-design-system",
@@ -28,8 +24,9 @@
28
24
  "access": "public",
29
25
  "provenance": true
30
26
  },
27
+ "sideEffects": false,
31
28
  "scripts": {
32
- "build": "tsup src/index.ts --format cjs,esm --dts",
29
+ "build": "tsup src/index.ts --format cjs,esm --dts --treeshake",
33
30
  "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
34
31
  "lint": "eslint src"
35
32
  }