@akanjs/config 0.0.142 → 0.0.144

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.
@@ -50,6 +50,7 @@ const withBase = (applyConfig) => {
50
50
  throw new Error("appName is not defined, please run with akan command");
51
51
  const ip = getLocalIP();
52
52
  const baseConfig = {
53
+ //! appId 바꿔야됨.
53
54
  appId: `com.${appName}.test`,
54
55
  appName,
55
56
  webDir: `../../dist/apps/${appName}/csr`,
@@ -18,6 +18,7 @@ const withBase = (applyConfig) => {
18
18
  throw new Error("appName is not defined, please run with akan command");
19
19
  const ip = getLocalIP();
20
20
  const baseConfig = {
21
+ //! appId 바꿔야됨.
21
22
  appId: `com.${appName}.test`,
22
23
  appName,
23
24
  webDir: `../../dist/apps/${appName}/csr`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/config",
3
- "version": "0.0.142",
3
+ "version": "0.0.144",
4
4
  "sourceType": "module",
5
5
  "module": {
6
6
  "access": "public"
package/styles.css CHANGED
@@ -199,6 +199,18 @@ a {
199
199
  }
200
200
  }
201
201
 
202
+ @keyframes shrink {
203
+ 0% {
204
+ transform: scale(1, 1);
205
+ }
206
+ 50% {
207
+ transform: scale(1.5, 1.5);
208
+ }
209
+ 100% {
210
+ transform: scale(0, 0);
211
+ }
212
+ }
213
+
202
214
  @keyframes slideDown {
203
215
  from {
204
216
  height: 0;
@@ -538,6 +550,7 @@ a {
538
550
  --animate-spin: spin 1s linear infinite;
539
551
  --animate-backdrop-blur: backdrop-blur-sm 2s ease-in-out forwards;
540
552
  --animate-pop: pop 0.15s ease-in-out forwards;
553
+ --animate-shrink: shrink 0.15s ease-in-out forwards;
541
554
  --animate-menuOpen: menuOpen 0.3s ease-in-out forwards;
542
555
  --animate-menuClose: menuClose 0.3s ease-in-out forwards;
543
556
  --animate-slideDown: slideDown 300ms cubic-bezier(0.87, 0, 0.13, 1);