Added bootstrap-package command

This commit is contained in:
Josh Goldberg
2020-06-26 19:29:27 -04:00
parent ca67435f03
commit 5c5bcdf6f0
36 changed files with 300 additions and 106 deletions
+2 -2
View File
@@ -41,11 +41,11 @@ The following common commands from [`package.json`](../package.json) can be run
### Code Directories
Once built, there will be three directories in this package containing code, in order of build process:
Once built, there will be up to three directories in this package containing code, in order of build process:
1. `src/`: The "source of truth" containing TypeScript source files.
2. `lib/`: JavaScript source files, declaration files, and source maps generated by TypeScript from `src/`.
3. **[TODO]** `dist/`: Bundled, minified versions of JavaScript files generated by WebPack from `lib/`.
3. `dist/`: Bundled, minified versions of JavaScript files generated by WebPack from `lib/` -- if `package.json` contains a `"dist": true` under `"shenanigans"`.
### `shenanigans-manager`