├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── build-nanoutimes.yml │ ├── build-sample-app.yml │ ├── test.yml │ └── update_dist.yml ├── .gitignore ├── .node-version ├── CHANGELOG.md ├── LICENSE ├── README.md ├── action.yml ├── dist ├── lib ├── main │ ├── index.js │ ├── index.js.map │ ├── licenses.txt │ └── sourcemap-register.js └── post │ ├── index.js │ ├── index.js.map │ ├── licenses.txt │ └── sourcemap-register.js ├── lib ├── node-v115-darwin-arm64 │ └── nanoutimes.node ├── node-v115-darwin-x64 │ └── nanoutimes.node ├── node-v120-darwin-arm64 │ └── nanoutimes.node ├── node-v137-darwin-arm64 │ └── nanoutimes.node ├── node-v93-darwin-arm64 │ └── nanoutimes.node └── node-v93-darwin-x64 │ └── nanoutimes.node ├── package.json ├── renovate.json ├── sample └── MyApp │ ├── Localizable.strings │ ├── MyApp.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved │ ├── MyApp │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── sample.imageset │ │ │ ├── Contents.json │ │ │ └── sample.png │ ├── ContentView.swift │ ├── Model.xcdatamodeld │ │ └── Model.xcdatamodel │ │ │ └── contents │ ├── MyAppApp.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── PropertyList.plist │ ├── Storyboard.storyboard │ └── View.xib │ ├── MyLibrary │ └── MyLibrary.swift │ └── Settings.bundle │ ├── Root.plist │ └── en.lproj │ └── Root.strings ├── src ├── input.ts ├── json.ts ├── main.ts ├── post.ts └── util.ts ├── test └── input.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build-nanoutimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/.github/workflows/build-nanoutimes.yml -------------------------------------------------------------------------------- /.github/workflows/build-sample-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/.github/workflows/build-sample-app.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update_dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/.github/workflows/update_dist.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 24.10.0 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/action.yml -------------------------------------------------------------------------------- /dist/lib: -------------------------------------------------------------------------------- 1 | ../lib -------------------------------------------------------------------------------- /dist/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/dist/main/index.js -------------------------------------------------------------------------------- /dist/main/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/dist/main/index.js.map -------------------------------------------------------------------------------- /dist/main/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/dist/main/licenses.txt -------------------------------------------------------------------------------- /dist/main/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/dist/main/sourcemap-register.js -------------------------------------------------------------------------------- /dist/post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/dist/post/index.js -------------------------------------------------------------------------------- /dist/post/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/dist/post/index.js.map -------------------------------------------------------------------------------- /dist/post/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/dist/post/licenses.txt -------------------------------------------------------------------------------- /dist/post/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/dist/post/sourcemap-register.js -------------------------------------------------------------------------------- /lib/node-v115-darwin-arm64/nanoutimes.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/lib/node-v115-darwin-arm64/nanoutimes.node -------------------------------------------------------------------------------- /lib/node-v115-darwin-x64/nanoutimes.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/lib/node-v115-darwin-x64/nanoutimes.node -------------------------------------------------------------------------------- /lib/node-v120-darwin-arm64/nanoutimes.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/lib/node-v120-darwin-arm64/nanoutimes.node -------------------------------------------------------------------------------- /lib/node-v137-darwin-arm64/nanoutimes.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/lib/node-v137-darwin-arm64/nanoutimes.node -------------------------------------------------------------------------------- /lib/node-v93-darwin-arm64/nanoutimes.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/lib/node-v93-darwin-arm64/nanoutimes.node -------------------------------------------------------------------------------- /lib/node-v93-darwin-x64/nanoutimes.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/lib/node-v93-darwin-x64/nanoutimes.node -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/renovate.json -------------------------------------------------------------------------------- /sample/MyApp/Localizable.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sample/MyApp/MyApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sample/MyApp/MyApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sample/MyApp/MyApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /sample/MyApp/MyApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /sample/MyApp/MyApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /sample/MyApp/MyApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /sample/MyApp/MyApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sample/MyApp/MyApp/Assets.xcassets/sample.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp/Assets.xcassets/sample.imageset/Contents.json -------------------------------------------------------------------------------- /sample/MyApp/MyApp/Assets.xcassets/sample.imageset/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp/Assets.xcassets/sample.imageset/sample.png -------------------------------------------------------------------------------- /sample/MyApp/MyApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp/ContentView.swift -------------------------------------------------------------------------------- /sample/MyApp/MyApp/Model.xcdatamodeld/Model.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp/Model.xcdatamodeld/Model.xcdatamodel/contents -------------------------------------------------------------------------------- /sample/MyApp/MyApp/MyAppApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp/MyAppApp.swift -------------------------------------------------------------------------------- /sample/MyApp/MyApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sample/MyApp/MyApp/PropertyList.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp/PropertyList.plist -------------------------------------------------------------------------------- /sample/MyApp/MyApp/Storyboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp/Storyboard.storyboard -------------------------------------------------------------------------------- /sample/MyApp/MyApp/View.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/MyApp/View.xib -------------------------------------------------------------------------------- /sample/MyApp/MyLibrary/MyLibrary.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /sample/MyApp/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /sample/MyApp/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/sample/MyApp/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /src/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/src/input.ts -------------------------------------------------------------------------------- /src/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/src/json.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/src/post.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/src/util.ts -------------------------------------------------------------------------------- /test/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/test/input.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irgaly/xcode-cache/HEAD/tsconfig.json --------------------------------------------------------------------------------