@turnipxenon/pineapple 2.4.6 → 2.4.7

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.
@@ -5,9 +5,9 @@
5
5
  </component>
6
6
  <component name="ChangeListManager">
7
7
  <list default="true" id="accb6ba2-c343-4f84-ad30-6e2d71eceee5" name="Changes" comment="Extract styling out of Skeleton accordion">
8
- <change afterPath="$PROJECT_DIR$/src/lib/postcss.d.ts" afterDir="false" />
9
8
  <change beforePath="$PROJECT_DIR$/src/lib/app.postcss" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/app.postcss" afterDir="false" />
10
9
  <change beforePath="$PROJECT_DIR$/src/lib/index.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/index.ts" afterDir="false" />
10
+ <change beforePath="$PROJECT_DIR$/src/lib/postcss.d.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/postcss.d.ts" afterDir="false" />
11
11
  <change beforePath="$PROJECT_DIR$/src/routes/portfolio/+page.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/routes/portfolio/+page.svelte" afterDir="false" />
12
12
  </list>
13
13
  <option name="SHOW_DIALOG" value="false" />
@@ -185,7 +185,7 @@
185
185
  <workItem from="1710274381105" duration="206000" />
186
186
  <workItem from="1710274942044" duration="14000" />
187
187
  <workItem from="1710275377359" duration="5036000" />
188
- <workItem from="1710289549437" duration="4568000" />
188
+ <workItem from="1710289549437" duration="4908000" />
189
189
  </task>
190
190
  <task id="LOCAL-00008" summary="yarn upgrade">
191
191
  <option name="closed" value="true" />
@@ -7,6 +7,3 @@ export * from "./components/dialog_manager/DialogUtils";
7
7
  export * from "./types/pineapple_fiber/PortraitType";
8
8
  export * from "./types/pineapple_fiber/DialogDetail";
9
9
  export * from "./util/stable_random";
10
- import AppPostCSS from "./app.postcss";
11
- import ThemePostCSS from "./theme.postcss";
12
- export { AppPostCSS, ThemePostCSS };
@@ -7,7 +7,3 @@ export * from "./components/dialog_manager/DialogUtils";
7
7
  export * from "./types/pineapple_fiber/PortraitType";
8
8
  export * from "./types/pineapple_fiber/DialogDetail";
9
9
  export * from "./util/stable_random";
10
- // from https://stackoverflow.com/a/74799312/17836168
11
- import AppPostCSS from "./app.postcss";
12
- import ThemePostCSS from "./theme.postcss";
13
- export { AppPostCSS, ThemePostCSS };
package/dist/index.d.ts CHANGED
@@ -7,6 +7,3 @@ export * from "./components/dialog_manager/DialogUtils";
7
7
  export * from "./types/pineapple_fiber/PortraitType";
8
8
  export * from "./types/pineapple_fiber/DialogDetail";
9
9
  export * from "./util/stable_random";
10
- import AppPostCSS from "./app.postcss";
11
- import ThemePostCSS from "./theme.postcss";
12
- export { AppPostCSS, ThemePostCSS };
package/dist/index.js CHANGED
@@ -7,7 +7,3 @@ export * from "./components/dialog_manager/DialogUtils";
7
7
  export * from "./types/pineapple_fiber/PortraitType";
8
8
  export * from "./types/pineapple_fiber/DialogDetail";
9
9
  export * from "./util/stable_random";
10
- // from https://stackoverflow.com/a/74799312/17836168
11
- import AppPostCSS from "./app.postcss";
12
- import ThemePostCSS from "./theme.postcss";
13
- export { AppPostCSS, ThemePostCSS };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@turnipxenon/pineapple",
3
3
  "description": "personal package for base styling for other personal projects",
4
- "version": "2.4.6",
4
+ "version": "2.4.7",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "npm run check-requirements && vite build && yarn package",
package/src/lib/index.ts CHANGED
@@ -8,12 +8,3 @@ export * from "./components/dialog_manager/DialogUtils";
8
8
  export * from "./types/pineapple_fiber/PortraitType";
9
9
  export * from "./types/pineapple_fiber/DialogDetail";
10
10
  export * from "./util/stable_random";
11
-
12
- // from https://stackoverflow.com/a/74799312/17836168
13
- import AppPostCSS from "./app.postcss";
14
- import ThemePostCSS from "./theme.postcss";
15
-
16
- export {
17
- AppPostCSS,
18
- ThemePostCSS
19
- };