Skip to content

Commit b3810b1

Browse files
committed
Add constants.js to Xcode project resources
Introduce a new JavaScript file to store constant values used across different browser extension components. This helps centralize configuration and makes maintenance easier by providing a single source of truth for shared constants.
1 parent 8696740 commit b3810b1

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

CF Cache Status/CF Cache Status.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
5B8F9F3F2F07E4C70092E4D0 /* popup.html in Resources */ = {isa = PBXBuildFile; fileRef = 5B8F9F392F07E4C70092E4D0 /* popup.html */; };
1818
5B8F9F402F07E4C70092E4D0 /* manifest.json in Resources */ = {isa = PBXBuildFile; fileRef = 5B8F9F3A2F07E4C70092E4D0 /* manifest.json */; };
1919
5B8F9F412F07E4C70092E4D0 /* popup.css in Resources */ = {isa = PBXBuildFile; fileRef = 5B8F9F3B2F07E4C70092E4D0 /* popup.css */; };
20+
5BE2138C2F0AA848002951C1 /* constants.js in Resources */ = {isa = PBXBuildFile; fileRef = 5BE2138B2F0AA848002951C1 /* constants.js */; };
2021
5BSWIFTUI012F09A0000000001 /* CacheStatusApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BSWIFTUI002F09A0000000001 /* CacheStatusApp.swift */; };
2122
5BSWIFTUI032F09A0000000001 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BSWIFTUI022F09A0000000001 /* ContentView.swift */; };
2223
/* End PBXBuildFile section */
@@ -59,6 +60,7 @@
5960
5B8F9F392F07E4C70092E4D0 /* popup.html */ = {isa = PBXFileReference; lastKnownFileType = text.html; name = popup.html; path = Resources/popup.html; sourceTree = "<group>"; };
6061
5B8F9F3A2F07E4C70092E4D0 /* manifest.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; name = manifest.json; path = Resources/manifest.json; sourceTree = "<group>"; };
6162
5B8F9F3B2F07E4C70092E4D0 /* popup.css */ = {isa = PBXFileReference; lastKnownFileType = text.css; name = popup.css; path = Resources/popup.css; sourceTree = "<group>"; };
63+
5BE2138B2F0AA848002951C1 /* constants.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; name = constants.js; path = Resources/constants.js; sourceTree = "<group>"; };
6264
5BSWIFTUI002F09A0000000001 /* CacheStatusApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CacheStatusApp.swift; sourceTree = "<group>"; };
6365
5BSWIFTUI022F09A0000000001 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; };
6466
/* End PBXFileReference section */
@@ -123,6 +125,7 @@
123125
5B8F9F352F07E4C70092E4D0 /* Resources */ = {
124126
isa = PBXGroup;
125127
children = (
128+
5BE2138B2F0AA848002951C1 /* constants.js */,
126129
5B0588C92F08CB540004883F /* content.js */,
127130
5B8F9F362F07E4C70092E4D0 /* popup.js */,
128131
5B8F9F372F07E4C70092E4D0 /* background.js */,
@@ -233,6 +236,7 @@
233236
5B8F9F3F2F07E4C70092E4D0 /* popup.html in Resources */,
234237
5B8F9F412F07E4C70092E4D0 /* popup.css in Resources */,
235238
5B8F9F402F07E4C70092E4D0 /* manifest.json in Resources */,
239+
5BE2138C2F0AA848002951C1 /* constants.js in Resources */,
236240
5B8F9F3D2F07E4C70092E4D0 /* background.js in Resources */,
237241
5B0588CA2F08CB540004883F /* content.js in Resources */,
238242
5B8F9F3C2F07E4C70092E4D0 /* popup.js in Resources */,

0 commit comments

Comments
 (0)