Skip to content

Commit

Permalink
fix(node): update library to only copy MD files in the root
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammisuli authored and vsavkin committed Jan 16, 2020
1 parent 840f499 commit a675c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/node/src/schematics/library/library.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ function addProject(options: NormalizedSchema): Rule {
tsConfig: `${options.projectRoot}/tsconfig.lib.json`,
packageJson: `${options.projectRoot}/package.json`,
main: `${options.projectRoot}/src/index.ts`,
assets: [`${options.projectRoot}/**/*.md`]
assets: [`${options.projectRoot}/*.md`]
}
};
}
Expand Down

0 comments on commit a675c9f

Please sign in to comment.