mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +08:00
location module naming changed to use "-"
This commit is contained in:
@ -120,9 +120,6 @@
|
|||||||
<TypeScriptCompile Include="location\location.ios.ts">
|
<TypeScriptCompile Include="location\location.ios.ts">
|
||||||
<DependentUpon>location.d.ts</DependentUpon>
|
<DependentUpon>location.d.ts</DependentUpon>
|
||||||
</TypeScriptCompile>
|
</TypeScriptCompile>
|
||||||
<TypeScriptCompile Include="location\location_types.ts">
|
|
||||||
<DependentUpon>location.d.ts</DependentUpon>
|
|
||||||
</TypeScriptCompile>
|
|
||||||
<TypeScriptCompile Include="Tests\file-system-tests.ts" />
|
<TypeScriptCompile Include="Tests\file-system-tests.ts" />
|
||||||
<TypeScriptCompile Include="Tests\http-tests.ts" />
|
<TypeScriptCompile Include="Tests\http-tests.ts" />
|
||||||
<TypeScriptCompile Include="Tests\image-tests.ts" />
|
<TypeScriptCompile Include="Tests\image-tests.ts" />
|
||||||
@ -196,9 +193,6 @@
|
|||||||
<Content Include="image\Readme.md" />
|
<Content Include="image\Readme.md" />
|
||||||
<TypeScriptCompile Include="local-settings\index.ts" />
|
<TypeScriptCompile Include="local-settings\index.ts" />
|
||||||
<TypeScriptCompile Include="local-settings\local-settings.d.ts" />
|
<TypeScriptCompile Include="local-settings\local-settings.d.ts" />
|
||||||
<TypeScriptCompile Include="location\location_common.ts">
|
|
||||||
<DependentUpon>location.d.ts</DependentUpon>
|
|
||||||
</TypeScriptCompile>
|
|
||||||
<TypeScriptCompile Include="local-settings\local-settings.android.ts">
|
<TypeScriptCompile Include="local-settings\local-settings.android.ts">
|
||||||
<DependentUpon>local-settings.d.ts</DependentUpon>
|
<DependentUpon>local-settings.d.ts</DependentUpon>
|
||||||
</TypeScriptCompile>
|
</TypeScriptCompile>
|
||||||
@ -206,6 +200,8 @@
|
|||||||
<DependentUpon>local-settings.d.ts</DependentUpon>
|
<DependentUpon>local-settings.d.ts</DependentUpon>
|
||||||
</TypeScriptCompile>
|
</TypeScriptCompile>
|
||||||
<TypeScriptCompile Include="local-settings\local-settings-common.ts" />
|
<TypeScriptCompile Include="local-settings\local-settings-common.ts" />
|
||||||
|
<TypeScriptCompile Include="location\location-common.ts" />
|
||||||
|
<TypeScriptCompile Include="location\location-types.ts" />
|
||||||
<Content Include="_references.ts" />
|
<Content Include="_references.ts" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import TKUnit = require("Tests/TKUnit");
|
import TKUnit = require("Tests/TKUnit");
|
||||||
import locationModule = require("location/location");
|
import locationModule = require("location/location");
|
||||||
import types = require("location/location_types");
|
import types = require("location/location-types");
|
||||||
|
|
||||||
var LocationManager = locationModule.LocationManager;
|
var LocationManager = locationModule.LocationManager;
|
||||||
var Location = locationModule.Location;
|
var Location = locationModule.Location;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
import types = require("location/location_types");
|
import types = require("location/location-types");
|
||||||
import promises = require("promises/promises");
|
import promises = require("promises/promises");
|
||||||
import locationModule = require("location/location");
|
import locationModule = require("location/location");
|
||||||
import timer = require("timer/timer");
|
import timer = require("timer/timer");
|
@ -1,6 +1,6 @@
|
|||||||
import types = require("location/location_types");
|
import types = require("location/location-types");
|
||||||
import appModule = require("application/application");
|
import appModule = require("application/application");
|
||||||
import common = require("location/location_common");
|
import common = require("location/location-common");
|
||||||
import merger = require("utils/module_merge");
|
import merger = require("utils/module_merge");
|
||||||
|
|
||||||
// merge the exports of the types module with the exports of this file
|
// merge the exports of the types module with the exports of this file
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import types = require("location/location_types");
|
import types = require("location/location-types");
|
||||||
import common = require("location/location_common");
|
import common = require("location/location-common");
|
||||||
import merger = require("utils/module_merge");
|
import merger = require("utils/module_merge");
|
||||||
|
|
||||||
// merge the exports of the types module with the exports of this file
|
// merge the exports of the types module with the exports of this file
|
||||||
|
Reference in New Issue
Block a user