mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 12:57:42 +08:00
Merge pull request #6946 from NativeScript/SvetoslavTsenov/include-readme
chore: include readme.md in package
This commit is contained in:
@ -38,8 +38,7 @@ module.exports = function(grunt) {
|
|||||||
return processed;
|
return processed;
|
||||||
};
|
};
|
||||||
|
|
||||||
var updatePackageDef = function(content, update)
|
var updatePackageDef = function (content, update) {
|
||||||
{
|
|
||||||
var contentAsObject = JSON.parse(content);
|
var contentAsObject = JSON.parse(content);
|
||||||
update(contentAsObject);
|
update(contentAsObject);
|
||||||
return JSON.stringify(contentAsObject, null, "\t");
|
return JSON.stringify(contentAsObject, null, "\t");
|
||||||
@ -258,7 +257,6 @@ module.exports = function(grunt) {
|
|||||||
expand: true,
|
expand: true,
|
||||||
src: [
|
src: [
|
||||||
'**/*',
|
'**/*',
|
||||||
'!*.md',
|
|
||||||
'!node_modules/**/*',
|
'!node_modules/**/*',
|
||||||
'!unit-tests/**/*',
|
'!unit-tests/**/*',
|
||||||
],
|
],
|
||||||
@ -267,6 +265,10 @@ module.exports = function(grunt) {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
exec: {
|
exec: {
|
||||||
|
copyReadme: {
|
||||||
|
cmd: `cp "README.md" ${localCfg.outTnsCoreModules}`,
|
||||||
|
cwd: process.cwd()
|
||||||
|
},
|
||||||
packModules: {
|
packModules: {
|
||||||
cmd: "npm pack",
|
cmd: "npm pack",
|
||||||
cwd: localCfg.outTnsCoreModules + "/"
|
cwd: localCfg.outTnsCoreModules + "/"
|
||||||
@ -376,6 +378,7 @@ module.exports = function(grunt) {
|
|||||||
"compile-modules",
|
"compile-modules",
|
||||||
"run-unit-test",
|
"run-unit-test",
|
||||||
"copy:modulesPackageDef",
|
"copy:modulesPackageDef",
|
||||||
|
"exec:copyReadme",
|
||||||
"exec:packModules"
|
"exec:packModules"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user