@nocobase/build 0.17.0-alpha.5 → 0.17.0-alpha.7
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/lib/buildDeclaration.js +2 -1
- package/lib/constant.js +1 -0
- package/package.json +2 -2
package/lib/buildDeclaration.js
CHANGED
|
@@ -31,8 +31,8 @@ __export(buildDeclaration_exports, {
|
|
|
31
31
|
});
|
|
32
32
|
module.exports = __toCommonJS(buildDeclaration_exports);
|
|
33
33
|
var import_gulp = __toESM(require("gulp"));
|
|
34
|
-
var import_path = __toESM(require("path"));
|
|
35
34
|
var import_gulp_typescript = __toESM(require("gulp-typescript"));
|
|
35
|
+
var import_path = __toESM(require("path"));
|
|
36
36
|
var import_constant = require("./constant");
|
|
37
37
|
const buildDeclaration = (cwd, targetDir) => {
|
|
38
38
|
return new Promise((resolve, reject) => {
|
|
@@ -46,6 +46,7 @@ const buildDeclaration = (cwd, targetDir) => {
|
|
|
46
46
|
`!${import_path.default.join(srcPath, "**/demos{,/**}")}`,
|
|
47
47
|
`!${import_path.default.join(srcPath, "**/__test__{,/**}")}`,
|
|
48
48
|
`!${import_path.default.join(srcPath, "**/__tests__{,/**}")}`,
|
|
49
|
+
`!${import_path.default.join(srcPath, "**/__e2e__{,/**}")}`,
|
|
49
50
|
`!${import_path.default.join(srcPath, "**/*.mdx")}`,
|
|
50
51
|
`!${import_path.default.join(srcPath, "**/*.md")}`,
|
|
51
52
|
`!${import_path.default.join(srcPath, "**/*.+(test|e2e|spec).+(js|jsx|ts|tsx)")}`,
|
package/lib/constant.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/build",
|
|
3
|
-
"version": "0.17.0-alpha.
|
|
3
|
+
"version": "0.17.0-alpha.7",
|
|
4
4
|
"description": "Library build tool based on rollup.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "tsup"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "91377a3abd1124f79fb3819f2d0e80905e091a32"
|
|
40
40
|
}
|