Skip to content

Commit

Permalink
Update packages dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Machy8 committed Sep 4, 2023
1 parent ccf12e0 commit 742bd40
Show file tree
Hide file tree
Showing 8 changed files with 1,099 additions and 539 deletions.
2 changes: 1 addition & 1 deletion packages/astro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@
"normalize-path": "^3.0.0"
},
"devDependencies": {
"astro": "^2.5.5"
"astro": "^3.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/astro/tests/jest/astrov2/input/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"dependencies": {
"@stylify/astro": "workspace:^",
"@stylify/stylify": "workspace:^",
"astro": "^2.0"
"astro": "^3.0"
}
}
4 changes: 2 additions & 2 deletions packages/bundler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
"@stylify/stylify": "workspace:^",
"autoprefixer": "^10.4.14",
"chokidar": "^3.5.3",
"fast-glob": "^3.2.12",
"fast-glob": "^3.3.1",
"micromatch": "^4.0.5",
"normalize-path": "^3.0.0",
"postcss": "^8.4.23"
"postcss": "^8.4.29"
}
}
7 changes: 6 additions & 1 deletion packages/nuxt/tests/jest/nuxt/input/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,10 @@ export default defineNuxtConfig({
modules: [
'@nuxt/content',
'@stylify/nuxt',
]
],
// Tmp fix for micromark
alias: {
"micromark/lib/preprocess.js": "micromark",
"micromark/lib/postprocess.js": "micromark",
},
});
16 changes: 8 additions & 8 deletions packages/unplugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,18 @@
"dependencies": {
"@stylify/bundler": "workspace:^",
"@stylify/stylify": "workspace:^",
"unplugin": "^1.3.1"
"unplugin": "^1.4.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-node-resolve": "^15.2.1",
"css-loader": "^6.8.1",
"esbuild": "^0.17.19",
"fast-glob": "^3.2.12",
"rollup": "^3.23.0",
"rollup-plugin-import-css": "~3.1.0",
"esbuild": "^0.19.2",
"fast-glob": "^3.3.1",
"rollup": "^3.28.0",
"rollup-plugin-import-css": "~3.3.1",
"rollup-plugin-postcss": "^4.0.2",
"style-loader": "^3.3.3",
"vite": "^4.3.9",
"webpack": "^5.84.1"
"vite": "^4.4.9",
"webpack": "^5.88.2"
}
}
4 changes: 2 additions & 2 deletions packages/unplugin/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ export const unplugin = createUnplugin((config: UnpluginConfigInterface = {}) =>
};
});

export const stylifyVite = unplugin.vite as UnpluginFactoryOutput<UnpluginConfigInterface, VitePlugin>;
export const stylifyRollup = unplugin.rollup as UnpluginFactoryOutput<UnpluginConfigInterface, RollupPlugin>;
export const stylifyVite = unplugin.vite as unknown as UnpluginFactoryOutput<UnpluginConfigInterface, VitePlugin>;
export const stylifyRollup = unplugin.rollup as unknown as UnpluginFactoryOutput<UnpluginConfigInterface, RollupPlugin>;
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
export const stylifyWebpack = unplugin.webpack as UnpluginFactoryOutput<UnpluginConfigInterface, WebpackPluginInstance>;
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
Expand Down
2 changes: 1 addition & 1 deletion packages/unplugin/tests/jest/webpack/expected/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 742bd40

Please sign in to comment.