ソースを参照

Release: v1.0.0-pre-alpha.0

lfabl 1 週間 前
コミット
75fc7c4670

+ 1 - 0
.npmignore

@@ -12,3 +12,4 @@ example
 LICENSE
 CODE_OF_CONDUCT.md
 CONTRIBUTING.md
+src

+ 50 - 50
example/web/ios/nibgatofficialwebsite/Images.xcassets/AppIcon.appiconset/Contents.json

@@ -1,53 +1,53 @@
 {
-  "images" : [
-    {
-      "idiom" : "iphone",
-      "scale" : "2x",
-      "size" : "20x20"
-    },
-    {
-      "idiom" : "iphone",
-      "scale" : "3x",
-      "size" : "20x20"
-    },
-    {
-      "idiom" : "iphone",
-      "scale" : "2x",
-      "size" : "29x29"
-    },
-    {
-      "idiom" : "iphone",
-      "scale" : "3x",
-      "size" : "29x29"
-    },
-    {
-      "idiom" : "iphone",
-      "scale" : "2x",
-      "size" : "40x40"
-    },
-    {
-      "idiom" : "iphone",
-      "scale" : "3x",
-      "size" : "40x40"
-    },
-    {
-      "idiom" : "iphone",
-      "scale" : "2x",
-      "size" : "60x60"
-    },
-    {
-      "idiom" : "iphone",
-      "scale" : "3x",
-      "size" : "60x60"
-    },
-    {
-      "idiom" : "ios-marketing",
-      "scale" : "1x",
-      "size" : "1024x1024"
+    "images" : [
+        {
+            "idiom" : "iphone",
+            "scale" : "2x",
+            "size" : "20x20"
+        },
+        {
+            "idiom" : "iphone",
+            "scale" : "3x",
+            "size" : "20x20"
+        },
+        {
+            "idiom" : "iphone",
+            "scale" : "2x",
+            "size" : "29x29"
+        },
+        {
+            "idiom" : "iphone",
+            "scale" : "3x",
+            "size" : "29x29"
+        },
+        {
+            "idiom" : "iphone",
+            "scale" : "2x",
+            "size" : "40x40"
+        },
+        {
+            "idiom" : "iphone",
+            "scale" : "3x",
+            "size" : "40x40"
+        },
+        {
+            "idiom" : "iphone",
+            "scale" : "2x",
+            "size" : "60x60"
+        },
+        {
+            "idiom" : "iphone",
+            "scale" : "3x",
+            "size" : "60x60"
+        },
+        {
+            "idiom" : "ios-marketing",
+            "scale" : "1x",
+            "size" : "1024x1024"
+        }
+    ],
+    "info" : {
+        "author" : "xcode",
+        "version" : 1
     }
-  ],
-  "info" : {
-    "author" : "xcode",
-    "version" : 1
-  }
 }

+ 4 - 4
example/web/ios/nibgatofficialwebsite/Images.xcassets/Contents.json

@@ -1,6 +1,6 @@
 {
-  "info" : {
-    "version" : 1,
-    "author" : "xcode"
-  }
+    "info" : {
+        "version" : 1,
+        "author" : "xcode"
+    }
 }

+ 1 - 1
package.json

@@ -37,7 +37,7 @@
         "clean": "del-cli lib",
         "lint": "eslint . --ext .ts,.tsx --fix",
         "prepare": "bob build && copyfiles -u 1 \"src/variants/**/*.json\" lib/typescript/src/ && node version.mjs",
-        "typecheck": "tsc",
+        "typecheck": "tsc -p tsconfig.build.json",
         "release": "release-it --only-version",
         "build": "yarn clean && yarn lint && yarn typecheck && yarn prepare && npm publish"
     },

+ 5 - 0
tsconfig.json

@@ -41,6 +41,11 @@
         "target": "ESNext",
         "verbatimModuleSyntax": true
     },
+    "include": [
+        "src/**/*.json",
+        "src/**/*",
+        "package.json"
+    ],
     "exclude": [
         "version.mjs",
         "lib",