Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Commit 183e317

Browse files
authored
Add ia32 arch in snapshot target archs by default (#193)
1 parent 5791cfc commit 183e317

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

npmScriptsManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const SCRIPT_TEMPLATES = Object.freeze({
33
"start-[PLATFORM]-bundle": "npm run ns-bundle --[PLATFORM] --run-app",
44
"build-[PLATFORM]-bundle": "npm run ns-bundle --[PLATFORM] --build-app",
55
"publish-ios-bundle": "npm run ns-bundle --ios --publish-app",
6-
"generate-android-snapshot": "generate-android-snapshot --projectRoot . --targetArchs arm,arm64 --install"
6+
"generate-android-snapshot": "generate-android-snapshot --targetArchs arm,arm64,ia32 --install"
77
});
88

99
const DEPRECATED_SCRIPT_TEMPLATES = Object.freeze([

prepublish/common/exports.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module.exports = env => {
5757
chunk: "vendor",
5858
projectRoot: __dirname,
5959
webpackConfig: config,
60-
targetArchs: ["arm", "arm64"],
60+
targetArchs: ["arm", "arm64", "ia32"],
6161
tnsJavaClassesOptions: { packages: ["tns-core-modules" ] },
6262
useLibs: false
6363
}));

projectFilesManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const CONFIG_REPLACE = `$1
2323
chunk: "vendor",
2424
projectRoot: __dirname,
2525
webpackConfig: config,
26-
targetArchs: ["arm", "arm64"],
26+
targetArchs: ["arm", "arm64", "ia32"],
2727
tnsJavaClassesOptions: { packages: ["tns-core-modules" ] },
2828
useLibs: false
2929
}));

templates/webpack.angular.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ module.exports = env => {
6666
chunk: "vendor",
6767
projectRoot: __dirname,
6868
webpackConfig: config,
69-
targetArchs: ["arm", "arm64"],
69+
targetArchs: ["arm", "arm64", "ia32"],
7070
tnsJavaClassesOptions: { packages: ["tns-core-modules" ] },
7171
useLibs: false
7272
}));

templates/webpack.javascript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ module.exports = env => {
6565
chunk: "vendor",
6666
projectRoot: __dirname,
6767
webpackConfig: config,
68-
targetArchs: ["arm", "arm64"],
68+
targetArchs: ["arm", "arm64", "ia32"],
6969
tnsJavaClassesOptions: { packages: ["tns-core-modules" ] },
7070
useLibs: false
7171
}));

templates/webpack.typescript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ module.exports = env => {
6565
chunk: "vendor",
6666
projectRoot: __dirname,
6767
webpackConfig: config,
68-
targetArchs: ["arm", "arm64"],
68+
targetArchs: ["arm", "arm64", "ia32"],
6969
tnsJavaClassesOptions: { packages: ["tns-core-modules" ] },
7070
useLibs: false
7171
}));

0 commit comments

Comments
 (0)