@3o3/date 0.2.12 → 0.2.14

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/package.json CHANGED
@@ -1,16 +1,15 @@
1
1
  {
2
2
  "name": "@3o3/date",
3
- "version": "0.2.12",
3
+ "version": "0.2.14",
4
4
  "sideEffects": false,
5
5
  "exports": {
6
6
  ".": {
7
- "require": "./dist/index.js",
8
- "import": "./esm/index.mjs",
9
- "types": "./dist/index.d.ts"
7
+ "require": "./src/index.ts",
8
+ "import": "./src/index.ts"
10
9
  },
11
10
  "./package.json": "./package.json"
12
11
  },
13
- "main": "./dist/index.js",
12
+ "main": "src/index.ts",
14
13
  "files": [
15
14
  "dist",
16
15
  "esm"
@@ -22,11 +21,11 @@
22
21
  "test": "yarn run -T jest --config ../../../jest.config.js --roots './packages/common/date/src'"
23
22
  },
24
23
  "dependencies": {
25
- "@3o3/utils": "^2.2.5",
24
+ "@3o3/utils": "workspace:^",
26
25
  "date-fns": "^2.25.0"
27
26
  },
28
27
  "devDependencies": {
29
- "@3o3/rollup-config": "^0.1.0",
28
+ "@3o3/rollup-config": "workspace:^",
30
29
  "@babel/core": "^7",
31
30
  "@babel/plugin-proposal-class-properties": "^7.14.5",
32
31
  "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
@@ -60,6 +59,5 @@
60
59
  "main": "./dist/index.js",
61
60
  "module": "./esm/index.mjs",
62
61
  "types": "./dist/index.d.ts"
63
- },
64
- "module": "./esm/index.mjs"
65
- }
62
+ }
63
+ }
package/src/index.ts ADDED
@@ -0,0 +1,2 @@
1
+ /** @3o3docs-ignore */
2
+ export * from './date'
package/CHANGELOG.md DELETED
@@ -1,157 +0,0 @@
1
- # @3o3/date
2
-
3
- ## 0.2.12
4
-
5
- ### Patch Changes
6
-
7
- - Updated dependencies [6b69149]
8
- - @3o3/utils@2.2.5
9
-
10
- ## 0.2.11
11
-
12
- ### Patch Changes
13
-
14
- - Updated dependencies [9991f3c]
15
- - @3o3/utils@2.2.4
16
-
17
- ## 0.2.10
18
-
19
- ### Patch Changes
20
-
21
- - Updated dependencies [559f894]
22
- - @3o3/utils@2.2.3
23
-
24
- ## 0.2.9
25
-
26
- ### Patch Changes
27
-
28
- - Updated dependencies [5ab8c8d]
29
- - @3o3/utils@2.2.2
30
-
31
- ## 0.2.8
32
-
33
- ### Patch Changes
34
-
35
- - Updated dependencies [5d82c8f]
36
- - @3o3/utils@2.2.1
37
-
38
- ## 0.2.7
39
-
40
- ### Patch Changes
41
-
42
- - Updated dependencies [a1f2eeb]
43
- - @3o3/utils@2.2.0
44
-
45
- ## 0.2.6
46
-
47
- ### Patch Changes
48
-
49
- - Updated dependencies [e5d3d44]
50
- - @3o3/utils@2.1.6
51
-
52
- ## 0.2.5
53
-
54
- ### Patch Changes
55
-
56
- - Updated dependencies [bfa0463]
57
- - @3o3/utils@2.1.5
58
-
59
- ## 0.2.4
60
-
61
- ### Patch Changes
62
-
63
- - Updated dependencies [5bc0d77]
64
- - @3o3/utils@2.1.4
65
-
66
- ## 0.2.3
67
-
68
- ### Patch Changes
69
-
70
- - Updated dependencies [2deaf4b]
71
- - @3o3/utils@2.1.3
72
-
73
- ## 0.2.2
74
-
75
- ### Patch Changes
76
-
77
- - Updated dependencies [e5bbbd2]
78
- - @3o3/utils@2.1.2
79
-
80
- ## 0.2.1
81
-
82
- ### Patch Changes
83
-
84
- - Updated dependencies [7221da9]
85
- - @3o3/utils@2.1.1
86
-
87
- ## 0.2.0
88
-
89
- ### Minor Changes
90
-
91
- - 52b9de6: Fix email validation and setup test environment
92
-
93
- ### Patch Changes
94
-
95
- - Updated dependencies [52b9de6]
96
- - @3o3/utils@2.1.0
97
-
98
- ## 0.1.7
99
-
100
- ### Patch Changes
101
-
102
- - Updated dependencies [60a1912]
103
- - @3o3/utils@2.0.5
104
-
105
- ## 0.1.6
106
-
107
- ### Patch Changes
108
-
109
- - Updated dependencies [faeaa3f]
110
- - @3o3/utils@2.0.4
111
-
112
- ## 0.1.5
113
-
114
- ### Patch Changes
115
-
116
- - Updated dependencies [1096ddf]
117
- - @3o3/utils@2.0.3
118
-
119
- ## 0.1.4
120
-
121
- ### Patch Changes
122
-
123
- - Updated dependencies [beb80c9]
124
- - @3o3/utils@2.0.2
125
-
126
- ## 0.1.3
127
-
128
- ### Patch Changes
129
-
130
- - b1c98ce: fix: 누락된 export 추가, localStorage 이름 명확하게 변경, sessionStorage fallback 추가
131
- - Updated dependencies [b1c98ce]
132
- - @3o3/utils@2.0.1
133
-
134
- ## 0.1.2
135
-
136
- ### Patch Changes
137
-
138
- - Updated dependencies [69b3652]
139
- - @3o3/utils@2.0.0
140
-
141
- ## 0.1.1
142
-
143
- ### Patch Changes
144
-
145
- - Updated dependencies [4fa1103]
146
- - @3o3/utils@1.0.0
147
-
148
- ## 0.1.0
149
-
150
- ### Minor Changes
151
-
152
- - cc4afa6: 0.0.1 version
153
-
154
- ### Patch Changes
155
-
156
- - Updated dependencies [cc4afa6]
157
- - @3o3/utils@0.1.0