pds-dev-kit-web-test 2.4.2 → 2.4.5

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.
@@ -1,3 +1,19 @@
1
+ export declare const spacing: {
2
+ spacingA: string;
3
+ spacingB: string;
4
+ spacingC: string;
5
+ spacingD: string;
6
+ spacingE: string;
7
+ spacingF: string;
8
+ spacingG: string;
9
+ spacingH: string;
10
+ spacingI: string;
11
+ spacingJ: string;
12
+ spacingK: string;
13
+ spacingL: string;
14
+ spacingM: string;
15
+ spacingN: string;
16
+ };
1
17
  export declare const theme: {
2
18
  fontWeight: {
3
19
  normal: string;
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web-test",
3
- "version": "2.4.2",
3
+ "version": "2.4.5",
4
4
  "license": "MIT",
5
5
  "private": false,
6
- "main": "dist/index.esm.js",
6
+ "main": "dist/index.cjs.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "flies": [
9
9
  "/dist"
package/release-note.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # PDS-DEV-KIT-WEB Release Notes
2
- ## [v2.4.0]
2
+ ## [v2.4.5]
3
3
  ## release|https://design.storybook.publ.biz/
4
4
 
5
5
  ### bundle
6
- * commonjs -> ESModule로 변경
7
- * NPM 모듈 배포
6
+ * ESModule -> commonjs로 변경
@@ -1,22 +1,23 @@
1
- import resolve from '@rollup/plugin-node-resolve';
2
- import babel from '@rollup/plugin-babel';
3
- import typescript from '@rollup/plugin-typescript';
4
- import json from '@rollup/plugin-json';
5
- import commonjs from '@rollup/plugin-commonjs';
6
- import sourcemaps from 'rollup-plugin-sourcemaps';
7
- import alias from '@rollup/plugin-alias';
1
+ const resolve = require('@rollup/plugin-node-resolve');
2
+ const babel = require('@rollup/plugin-babel');
3
+ const typescript = require('@rollup/plugin-typescript');
4
+ const json = require('@rollup/plugin-json');
5
+ const commonjs = require('@rollup/plugin-commonjs');
6
+ const sourcemaps = require('rollup-plugin-sourcemaps');
7
+ const alias = require('@rollup/plugin-alias');
8
8
 
9
- import packageJson from './package.json' assert { type: 'json' };
9
+ const packageJson = require('./package.json');
10
10
 
11
- export default {
11
+ module.exports = {
12
12
  input: './index.ts', // 진입 경로
13
13
  output: [
14
14
  {
15
15
  file: packageJson.main,
16
- format: 'esm',
16
+ format: 'cjs',
17
17
  sourcemap: false
18
18
  }
19
19
  ],
20
+ treeshake: false,
20
21
  plugins: [
21
22
  // 바벨 트랜스파일러 설정
22
23
  babel({