Skip to content

Commit 250760b

Browse files
committed
upgraded tooling and dependencies
1 parent 4bc8acf commit 250760b

62 files changed

Lines changed: 7393 additions & 8661 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.babelrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.buckconfig

Lines changed: 0 additions & 6 deletions
This file was deleted.

.bundle/config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
BUNDLE_PATH: "vendor/bundle"
2+
BUNDLE_FORCE_RUBY_PLATFORM: 1

.flowconfig

Lines changed: 0 additions & 45 deletions
This file was deleted.

.gitignore

Lines changed: 41 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
# OSX
2-
#
32
.DS_Store
43

54
# Xcode
6-
#
75
build/
86
*.pbxuser
97
!default.pbxuser
@@ -20,30 +18,55 @@ DerivedData
2018
*.hmap
2119
*.ipa
2220
*.xcuserstate
23-
project.xcworkspace
21+
**/.xcode.env.local
2422

25-
# Android/IJ
26-
#
27-
*.iml
23+
# Android/IntelliJ
2824
.idea
2925
.gradle
3026
local.properties
27+
*.iml
28+
*.hprof
29+
.cxx/
30+
*.keystore
31+
!debug.keystore
32+
.kotlin/
3133

32-
# node.js
33-
#
34+
# Node
3435
node_modules/
3536
npm-debug.log
37+
yarn-error.log
38+
39+
# fastlane
40+
**/fastlane/report.xml
41+
**/fastlane/Preview.html
42+
**/fastlane/screenshots
43+
**/fastlane/test_output
44+
45+
# Bundle artifact
46+
*.jsbundle
3647

37-
# BUCK
38-
buck-out/
39-
\.buckd/
40-
android/app/libs
41-
android/keystores/debug.keystore
48+
# Ruby / CocoaPods
49+
**/Pods/
50+
/vendor/bundle/
4251

43-
# Fable
52+
# Metro health check
53+
.metro-health-check*
54+
55+
# Yarn
56+
.yarn/*
57+
!.yarn/patches
58+
!.yarn/plugins
59+
!.yarn/releases
60+
!.yarn/sdks
61+
!.yarn/versions
62+
63+
# Fable output
4464
out/
65+
66+
# Generated native projects (recreate with: npm run setup)
67+
ios/
68+
android/
69+
70+
# .NET
71+
src/bin/
4572
src/obj/
46-
packages/
47-
paket-files/
48-
.vscode/.react/
49-
.vscode/launchReactNative.js

.paket/Paket.Restore.targets

Lines changed: 0 additions & 265 deletions
This file was deleted.

.paket/paket.exe

-51 KB
Binary file not shown.

.paket/paket.exe.config

Lines changed: 0 additions & 6 deletions
This file was deleted.

.vscode/launch.json

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,19 @@
33
"configurations": [
44
{
55
"name": "Debug Android",
6-
"program": "${workspaceRoot}/.vscode/launchReactNative.js",
76
"type": "reactnative",
87
"request": "launch",
98
"platform": "android",
10-
"preLaunchTask": "firstbuild",
11-
"internalDebuggerPort": 9090,
12-
"sourceMaps": true,
13-
"outDir": "${workspaceRoot}/.vscode/.react"
9+
"preLaunchTask": "fable-watch",
10+
"sourceMaps": true
1411
},
1512
{
1613
"name": "Debug iOS",
17-
"program": "${workspaceRoot}/.vscode/launchReactNative.js",
1814
"type": "reactnative",
1915
"request": "launch",
2016
"platform": "ios",
21-
"target": "iPhone 6",
22-
"preLaunchTask": "firstbuild",
23-
"internalDebuggerPort": 9090,
24-
"sourceMaps": true,
25-
"outDir": "${workspaceRoot}/.vscode/.react"
17+
"preLaunchTask": "fable-watch",
18+
"sourceMaps": true
2619
}
2720
]
2821
}

.vscode/tasks.json

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,11 @@
11
{
2-
// See https://go.microsoft.com/fwlink/?LinkId=733558
3-
// for the documentation about the tasks.json format
4-
"version": "0.1.0",
5-
"command": "dotnet",
6-
"isShellCommand": true,
7-
"showOutput": "always",
8-
"suppressTaskName": true,
2+
"version": "2.0.0",
93
"tasks": [
104
{
11-
"taskName": "watch",
12-
"options": {
13-
"cwd": "${workspaceRoot}/src"
14-
},
15-
"args": [ "fable","yarn-watch" ],
5+
"label": "fable-watch",
6+
"type": "shell",
7+
"command": "dotnet",
8+
"args": [ "fable", "watch", "src/app.fsproj", "-o", "out", "--define", "DEBUG" ],
169
"isBackground": true,
1710
"problemMatcher": "$msCompile"
1811
}

0 commit comments

Comments
 (0)