feat(windows): initial windows support

This commit is contained in:
Jagandeep Brar
2022-03-26 00:40:27 -04:00
parent 91f556d078
commit 313e05c8f5
23 changed files with 1031 additions and 21 deletions

View File

@@ -4,15 +4,16 @@
"version": "10.0.2",
"private": true,
"scripts": {
"build:profile": "flutter run --profile --cache-sksl --purge-persistent-cache",
"build:android": "flutter clean && flutter build apk --split-per-abi --bundle-sksl-path shaders/android_sksl.json --release",
"build:ios": "flutter clean && flutter build ipa --bundle-sksl-path shaders/ios_sksl.json --release",
"build:macos": "flutter clean && flutter build macos --release",
"build:windows": "flutter clean && flutter build windows --release",
"build:web": "flutter clean && flutter build web --web-renderer canvaskit --release",
"cocoapods:clear_cache": "rm -rf ~/Library/Caches/CocoaPods && rm -rf ~/Library/Developer/Xcode/DerivedData/*",
"cocoapods:nuke": "npm run cocoapods:nuke:ios && npm run cocoapods:nuke:macos",
"cocoapods:nuke:ios": "cd ios && rm -rf Pods && rm -rf Podfile.lock && pod deintegrate && pod setup && pod install --repo-update",
"cocoapods:nuke:macos": "cd macos && rm -rf Pods && rm -rf Podfile.lock && pod deintegrate && pod setup && pod install --repo-update",
"commit": "git add . && cz",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"fastlane:update": "npm run fastlane:update:ios && npm run fastlane:update:macos && npm run fastlane:update:android",
@@ -25,11 +26,11 @@
"generate:assets": "dart pub global activate spider && spider build",
"generate:build_runner": "flutter packages pub run build_runner build --delete-conflicting-outputs",
"generate:localization": "dart ./scripts/generate_localization.dart",
"prepare": "husky install",
"profile": "flutter run --profile --cache-sksl --purge-persistent-cache",
"release:prepare": "npm run cocoapods:nuke && npm run generate && npm run fastlane:update",
"release:changelog": "standard-version --no-verify --commit-all",
"release:changelog:dry": "npm run release:changelog -- --dry-run",
"commit": "git add . && cz",
"prepare": "husky install"
"release:changelog:dry": "npm run release:changelog -- --dry-run"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",