@teamturing/react-kit 1.1.4 → 1.1.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.
Files changed (2) hide show
  1. package/package.json +4 -12
  2. package/src/index.ts +0 -12
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@teamturing/react-kit",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "React components, hooks for create teamturing web application",
5
5
  "author": "Sungchang Park <psch300@gmail.com> (https://github.com/psch300)",
6
6
  "homepage": "https://github.com/weareteamturing/bombe#readme",
7
7
  "license": "MIT",
8
- "main": "./src/index.ts",
8
+ "main": "./dist/index.js",
9
9
  "files": [
10
10
  "dist",
11
11
  "esm"
@@ -45,15 +45,7 @@
45
45
  },
46
46
  "dependencies": {
47
47
  "@teamturing/icons": "^1.17.5",
48
- "@teamturing/token-studio": "^1.1.4"
48
+ "@teamturing/token-studio": "^1.1.5"
49
49
  },
50
- "publishConfig": {
51
- "main": "./dist/index.js",
52
- "exports": {
53
- "require": "./dist/index.js",
54
- "types": "./dist/index.d.ts",
55
- "import": "./esm/index.js"
56
- }
57
- },
58
- "gitHead": "a5c6f476c4d3f23f615dde01f448da34ae382863"
50
+ "gitHead": "feca6a32202c553c53ef2870fa2e374009b737ef"
59
51
  }
package/src/index.ts DELETED
@@ -1,12 +0,0 @@
1
- export { default as Chip } from './core/Chip';
2
- export { default as GradientText } from './core/GradientText';
3
- export { default as Grid } from './core/Grid';
4
- export { default as IconButton } from './core/IconButton';
5
- export { default as IconToggleButton } from './core/IconToggleButton';
6
- export { default as ItemList } from './core/ItemList';
7
- export { default as Space } from './core/Space';
8
- export { default as Spinner } from './core/Spinner';
9
- export { default as Stack } from './core/Stack';
10
- export { default as StyledIcon } from './core/StyledIcon';
11
- export { default as Text } from './core/Text';
12
- export { default as View } from './core/View';