Skip to content

Commit

Permalink
Remove capitals from folder names
Browse files Browse the repository at this point in the history
  • Loading branch information
z0ccc committed Jan 16, 2023
1 parent 38328ce commit 294f5d7
Show file tree
Hide file tree
Showing 18 changed files with 16 additions and 16 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/Popup/Popup.tsx → src/popup/Popup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ import {
} from 'react-feather'
import VpnIcon from '../assets/vpnIcon.svg'
import TabItem from './TabItem'
import LocationPage from './Pages/LocationPage'
import UserAgentPage from './Pages/UserAgentPage'
import VpnPage from './Pages/VpnPage'
import SettingsPage from './Pages/SettingsPage'
import LocationPage from './pages/locationPage'
import UserAgentPage from './pages/userAgentPage'
import VpnPage from './pages/vpnPage'
import SettingsPage from './pages/settingsPage'
import '../assets/global.css'

const Popup = () => {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { useState, useEffect, ChangeEvent, useCallback } from 'react'
import { Box, Button, Flex, Label, Select } from 'theme-ui'
import Page from '../../Components/Page'
import Checkbox from '../../Components/CheckBox'
import DebouncedInput from '../../Components/DebouncedInput'
import { Box, Flex, Label, Select } from 'theme-ui'
import Page from '../../components/Page'
import Checkbox from '../../components/CheckBox'
import DebouncedInput from '../../components/DebouncedInput'
import detachDebugger from '../../../utils/detachDebugger'
import countryLocales from '../../../utils/countryLocales'
import configurations from '../../../utils/configurations'
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Link, Text } from 'theme-ui'
import Page from '../../Components/Page'
import Page from '../../components/Page'
import InfoItem from './InfoItem'

interface SettingsPageProps {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { useState, useEffect, ChangeEvent } from 'react'
import { Box, Label, Select } from 'theme-ui'
import Checkbox from '../../Components/CheckBox'
import DebouncedInput from '../../Components/DebouncedInput'
import Checkbox from '../../components/CheckBox'
import DebouncedInput from '../../components/DebouncedInput'
import userAgents from '../../../utils/userAgents'
import detachDebugger from '../../../utils/detachDebugger'
import Page from '../../Components/Page'
import Page from '../../components/Page'

interface UserAgentPageProps {
tab: string
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Box, Image } from 'theme-ui'
import Page from '../../Components/Page'
import Page from '../../components/Page'
import VpnItem from './VpnItem'
import nordLogo from '../../../assets/nord.svg'
import protonLogo from '../../../assets/proton.svg'
Expand Down
6 changes: 3 additions & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ if (fileSystem.existsSync(secretsPath)) {
var options = {
mode: process.env.NODE_ENV || 'development',
entry: {
popup: path.join(__dirname, 'src', 'Popup', 'index.tsx'),
background: path.join(__dirname, 'src', 'Background', 'index.ts'),
popup: path.join(__dirname, 'src', 'popup', 'index.tsx'),
background: path.join(__dirname, 'src', 'background', 'index.ts'),
},
chromeExtensionBoilerplate: {
notHotReload: ['background'],
Expand Down Expand Up @@ -165,7 +165,7 @@ var options = {
],
}),
new HtmlWebpackPlugin({
template: path.join(__dirname, 'src', 'Popup', 'index.html'),
template: path.join(__dirname, 'src', 'popup', 'index.html'),
filename: 'popup.html',
chunks: ['popup'],
cache: false,
Expand Down

0 comments on commit 294f5d7

Please sign in to comment.