@situm/cordova 3.15.61 → 3.15.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/azure-pipelines.yml +6 -1
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/src/ios/Podfile +1 -1
package/azure-pipelines.yml
CHANGED
|
@@ -187,6 +187,11 @@ jobs:
|
|
|
187
187
|
- bash: |
|
|
188
188
|
|
|
189
189
|
cd cordova
|
|
190
|
+
|
|
191
|
+
echo -e "\n[+] Installing PNPM version $(pnpmVersion)\n"
|
|
192
|
+
corepack enable
|
|
193
|
+
corepack prepare pnpm@$(pnpmVersion) --activate
|
|
194
|
+
|
|
190
195
|
echo -e "\n[+] Setting NPM version to $(version)"
|
|
191
196
|
pnpm version $(version) --no-git-tag-version
|
|
192
197
|
|
|
@@ -233,7 +238,7 @@ jobs:
|
|
|
233
238
|
echo "//registry.npmjs.org/:_authToken=$(NPM_TOKEN)" > ~/.npmrc
|
|
234
239
|
|
|
235
240
|
echo -e "\n[+] Publish NPM packages"
|
|
236
|
-
pnpm publish --access
|
|
241
|
+
pnpm publish --access public
|
|
237
242
|
|
|
238
243
|
displayName: NPM publish
|
|
239
244
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@situm/cordova",
|
|
3
|
-
"version": "3.15.
|
|
3
|
+
"version": "3.15.62",
|
|
4
4
|
"description": "Situm Wayfinding for Capacitor and Cordova. Integrate plug&play indoor navigation experience with floorplans, POIs, routes and turn-by-turn directions in no time. With the power of Situm.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"repository": "https://github.com/situmtech/cordova",
|
package/plugin.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
|
4
4
|
id="@situm/cordova"
|
|
5
|
-
version="3.15.
|
|
5
|
+
version="3.15.62">
|
|
6
6
|
<name>Situm Cordova plugin Official</name>
|
|
7
7
|
<description>This is the stable branch.</description>
|
|
8
8
|
<license>MIT</license>
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
<config>
|
|
95
95
|
</config>
|
|
96
96
|
<pods use-frameworks="false">
|
|
97
|
-
<pod name="SitumSDK" spec="~> 3.
|
|
97
|
+
<pod name="SitumSDK" spec="~> 3.40.0"/>
|
|
98
98
|
</pods>
|
|
99
99
|
</podspec>
|
|
100
100
|
|
package/src/ios/Podfile
CHANGED