Skip to content

Commit

Permalink
chore(deps): all to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
belgattitude committed Feb 21, 2024
1 parent 511e41f commit 6d3b107
Show file tree
Hide file tree
Showing 7 changed files with 1,581 additions and 1,618 deletions.
5 changes: 4 additions & 1 deletion .ncurc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
# @link https://github.com/raineorshine/npm-check-updates

# Add here exclusions on packages if any
reject: ['syncpack']
reject: [
# remix vite plugin doesn't handle v4/5+
'isbot',
]
6 changes: 1 addition & 5 deletions apps/remix-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,12 @@
"typecheck": "tsc --project ./tsconfig.json --noEmit"
},
"dependencies": {
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.3",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.11.0",
"@remix-run/node": "2.7.2",
"@remix-run/react": "2.7.2",
"@remix-run/serve": "2.7.2",
"@your-org/common-i18n": "workspace:^",
"@your-org/ts-utils": "workspace:^",
"isbot": "5.1.0",
"isbot": "3.8.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// @link https://nextjs.org/docs/advanced-features/customizing-postcss-config
// @link https://tailwindcss.com/docs/using-with-preprocessors

module.exports = {
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
Expand Down
2 changes: 1 addition & 1 deletion apps/remix-app/remix.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/
const config = {
appDirectory: './src/app',
ignoredRouteFiles: ['**/.*'],
ignoredRouteFiles: ['**/.*', '**./*.css'],
// assetsBuildDirectory: "public/build",
// serverBuildPath: "build/index.js",
// publicPath: "/build/",
Expand Down
2 changes: 1 addition & 1 deletion apps/remix-app/src/app/root.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { LinksFunction } from '@remix-run/node';

import stylesheet from '../styles/tailwind.css';
import stylesheet from '../styles/tailwind.css?url';

export const links: LinksFunction = () => [
{ rel: 'stylesheet', href: stylesheet },
Expand Down
2 changes: 1 addition & 1 deletion apps/remix-app/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import tsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({
plugins: [
remix({
ignoredRouteFiles: ['**/.*'],
ignoredRouteFiles: ['**/.*', '**/*.css'],
appDirectory: './src/app',
}),
tsconfigPaths(),
Expand Down
Loading

0 comments on commit 6d3b107

Please sign in to comment.