@primate/markdown 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/module.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primate/markdown",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Primate Markdown module",
5
5
  "homepage": "https://primatejs.com/modules/markdown",
6
6
  "bugs": "https://github.com/primatejs/primate/issues",
package/src/module.js CHANGED
@@ -41,7 +41,7 @@ export default ({
41
41
  },
42
42
  async compile(app, next) {
43
43
  const {location} = app.config;
44
- const source = app.runpath(directory);
44
+ const source = app.runpath(env.directory);
45
45
  // copy ${env.directory} to build/${env.directory}
46
46
  await app.stage(app.root.join(env.directory), env.directory, re);
47
47