mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
Merge branch 'release' into mdonev-merge-release-resourceid-fix
This commit is contained in:
@ -38,8 +38,7 @@ module.exports = function(grunt) {
|
||||
return processed;
|
||||
};
|
||||
|
||||
var updatePackageDef = function(content, update)
|
||||
{
|
||||
var updatePackageDef = function (content, update) {
|
||||
var contentAsObject = JSON.parse(content);
|
||||
update(contentAsObject);
|
||||
return JSON.stringify(contentAsObject, null, "\t");
|
||||
@ -258,7 +257,6 @@ module.exports = function(grunt) {
|
||||
expand: true,
|
||||
src: [
|
||||
'**/*',
|
||||
'!*.md',
|
||||
'!node_modules/**/*',
|
||||
'!unit-tests/**/*',
|
||||
],
|
||||
@ -267,6 +265,10 @@ module.exports = function(grunt) {
|
||||
}
|
||||
},
|
||||
exec: {
|
||||
copyReadme: {
|
||||
cmd: `cp "README.md" ${localCfg.outTnsCoreModules}`,
|
||||
cwd: process.cwd()
|
||||
},
|
||||
packModules: {
|
||||
cmd: "npm pack",
|
||||
cwd: localCfg.outTnsCoreModules + "/"
|
||||
@ -376,6 +378,7 @@ module.exports = function(grunt) {
|
||||
"compile-modules",
|
||||
"run-unit-test",
|
||||
"copy:modulesPackageDef",
|
||||
"exec:copyReadme",
|
||||
"exec:packModules"
|
||||
]);
|
||||
|
||||
|
@ -114,8 +114,9 @@ export function _setAndroidFragmentTransitions(
|
||||
let currentFragmentNeedsDifferentAnimation = false;
|
||||
if (currentEntry) {
|
||||
_updateTransitions(currentEntry);
|
||||
if (currentEntry.transitionName !== name
|
||||
|| currentEntry.transition !== transition) {
|
||||
if (currentEntry.transitionName !== name ||
|
||||
currentEntry.transition !== transition ||
|
||||
!useLollipopTransition) {
|
||||
clearExitAndReenterTransitions(currentEntry, true);
|
||||
currentFragmentNeedsDifferentAnimation = true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user