@grainulation/mill 1.0.1 → 1.0.2
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/bin/mill.js +1 -1
- package/package.json +1 -2
- /package/lib/formats/{bibtex.js → bibtex.mjs} +0 -0
- /package/lib/formats/{changelog.js → changelog.mjs} +0 -0
- /package/lib/formats/{confluence-adf.js → confluence-adf.mjs} +0 -0
- /package/lib/formats/{csv.js → csv.mjs} +0 -0
- /package/lib/formats/{dot.js → dot.mjs} +0 -0
- /package/lib/formats/{evidence-matrix.js → evidence-matrix.mjs} +0 -0
- /package/lib/formats/{executive-summary.js → executive-summary.mjs} +0 -0
- /package/lib/formats/{github-issues.js → github-issues.mjs} +0 -0
- /package/lib/formats/{graphml.js → graphml.mjs} +0 -0
- /package/lib/formats/{html-report.js → html-report.mjs} +0 -0
- /package/lib/formats/{jira-csv.js → jira-csv.mjs} +0 -0
- /package/lib/formats/{json-ld.js → json-ld.mjs} +0 -0
- /package/lib/formats/{markdown.js → markdown.mjs} +0 -0
- /package/lib/formats/{ndjson.js → ndjson.mjs} +0 -0
- /package/lib/formats/{obsidian.js → obsidian.mjs} +0 -0
- /package/lib/formats/{opml.js → opml.mjs} +0 -0
- /package/lib/formats/{ris.js → ris.mjs} +0 -0
- /package/lib/formats/{rss.js → rss.mjs} +0 -0
- /package/lib/formats/{sankey.js → sankey.mjs} +0 -0
- /package/lib/formats/{slide-deck.js → slide-deck.mjs} +0 -0
- /package/lib/formats/{sql.js → sql.mjs} +0 -0
- /package/lib/formats/{static-site.js → static-site.mjs} +0 -0
- /package/lib/formats/{treemap.js → treemap.mjs} +0 -0
- /package/lib/formats/{typescript-defs.js → typescript-defs.mjs} +0 -0
- /package/lib/formats/{yaml.js → yaml.mjs} +0 -0
package/bin/mill.js
CHANGED
|
@@ -406,7 +406,7 @@ async function runCiArtifacts(args) {
|
|
|
406
406
|
const FORMATS_DIR = path.join(LIB_DIR, "formats");
|
|
407
407
|
const formatFiles = fs
|
|
408
408
|
.readdirSync(FORMATS_DIR)
|
|
409
|
-
.filter((f) => f.endsWith(".
|
|
409
|
+
.filter((f) => f.endsWith(".mjs"));
|
|
410
410
|
const formatMap = {};
|
|
411
411
|
for (const file of formatFiles) {
|
|
412
412
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grainulation/mill",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Turn wheat sprint artifacts into shareable formats",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -42,7 +42,6 @@
|
|
|
42
42
|
],
|
|
43
43
|
"author": "grainulation contributors",
|
|
44
44
|
"license": "MIT",
|
|
45
|
-
"type": "module",
|
|
46
45
|
"repository": {
|
|
47
46
|
"type": "git",
|
|
48
47
|
"url": "git+https://github.com/grainulation/mill.git"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|