@pikacss/integration 0.0.26 → 0.0.28

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/dist/index.cjs CHANGED
@@ -284,7 +284,7 @@ async function createCtx(options) {
284
284
  const relativeTsCodegenFilepath = tsCodegenFilepath == null ? null : `./${pathe.relative(pathe.dirname(resolvedConfigPath), tsCodegenFilepath)}`;
285
285
  await promises.writeFile(resolvedConfigPath, [
286
286
  `import { defineEngineConfig } from '${currentPackageName}'`,
287
- ...relativeTsCodegenFilepath == null ? [] : [`import '${relativeTsCodegenFilepath}'`],
287
+ ...relativeTsCodegenFilepath == null ? [] : [`/** @type {import('${relativeTsCodegenFilepath}')} */`],
288
288
  "",
289
289
  "export default defineEngineConfig({",
290
290
  " // Add your PikaCSS engine config here",
package/dist/index.mjs CHANGED
@@ -278,7 +278,7 @@ async function createCtx(options) {
278
278
  const relativeTsCodegenFilepath = tsCodegenFilepath == null ? null : `./${relative(dirname(resolvedConfigPath), tsCodegenFilepath)}`;
279
279
  await writeFile(resolvedConfigPath, [
280
280
  `import { defineEngineConfig } from '${currentPackageName}'`,
281
- ...relativeTsCodegenFilepath == null ? [] : [`import '${relativeTsCodegenFilepath}'`],
281
+ ...relativeTsCodegenFilepath == null ? [] : [`/** @type {import('${relativeTsCodegenFilepath}')} */`],
282
282
  "",
283
283
  "export default defineEngineConfig({",
284
284
  " // Add your PikaCSS engine config here",
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.0.26",
7
+ "version": "0.0.28",
8
8
  "author": "DevilTea <ch19980814@gmail.com>",
9
9
  "license": "MIT",
10
10
  "repository": {
@@ -42,7 +42,7 @@
42
42
  "micromatch": "^4.0.8",
43
43
  "pathe": "^2.0.3",
44
44
  "perfect-debounce": "^1.0.0",
45
- "@pikacss/core": "0.0.26"
45
+ "@pikacss/core": "0.0.28"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/micromatch": "^4.0.9"