@exanderal/stackcraft 0.8.6 → 0.8.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exanderal/stackcraft",
3
- "version": "0.8.6",
3
+ "version": "0.8.7",
4
4
  "description": "Opinionated full-stack project scaffolding CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,11 +1,12 @@
1
1
  import FontAwesome from '@expo/vector-icons/FontAwesome';
2
2
  import { Tabs } from 'expo-router';
3
+ import { type ComponentProps } from 'react';
3
4
 
4
5
  import Colors from '@/constants/Colors';
5
6
  import { useColorScheme } from '@/components/useColorScheme';
6
7
 
7
8
  function TabBarIcon(props: {
8
- name: React.ComponentProps<typeof FontAwesome>['name'];
9
+ name: ComponentProps<typeof FontAwesome>['name'];
9
10
  color: string;
10
11
  }) {
11
12
  return <FontAwesome size={28} style={{ marginBottom: -3 }} {...props} />;
@@ -1,4 +1,3 @@
1
- import { defineConfig } from 'eslint/config';
2
- import expoConfig from 'eslint-config-expo/flat';
1
+ import expoConfig from 'eslint-config-expo';
3
2
 
4
- export default defineConfig([...expoConfig]);
3
+ export default expoConfig;
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/react": "~19.1.0",
36
- "eslint": "^9.0.0",
36
+ "eslint": "^9.9.0",
37
37
  "eslint-config-expo": "~9.2.0",
38
38
  "typescript": "~5.9.2"
39
39
  },
@@ -1,4 +1,3 @@
1
- import React from "react";
2
1
  import { useTemplateComponent } from "./TemplateComponent.behaviour";
3
2
 
4
3
  export const TemplateComponent = () => {