ic-mops 1.8.0 → 1.9.0
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/.DS_Store +0 -0
- package/.dockerignore +3 -0
- package/CHANGELOG.md +7 -0
- package/bun.lock +1278 -0
- package/bundle/bench/bench-canister.mo +109 -101
- package/bundle/bench/user-bench.mo +6 -6
- package/bundle/cli.js +1793 -909
- package/bundle/cli.tgz +0 -0
- package/bundle/declarations/main/main.did +6 -0
- package/bundle/declarations/main/main.did.d.ts +6 -0
- package/bundle/declarations/main/main.did.js +6 -0
- package/bundle/package.json +1 -1
- package/bundle/templates/src/lib.mo +13 -13
- package/bundle/templates/test/lib.test.mo +2 -2
- package/bundle/xhr-sync-worker.js +59 -0
- package/cli.ts +28 -0
- package/commands/docs-coverage.ts +110 -0
- package/commands/docs.ts +47 -20
- package/commands/publish.ts +12 -1
- package/declarations/main/main.did +6 -0
- package/declarations/main/main.did.d.ts +6 -0
- package/declarations/main/main.did.js +6 -0
- package/dist/cli.js +25 -0
- package/dist/commands/bench-replica.js +5 -2
- package/dist/commands/docs-coverage.d.ts +8 -0
- package/dist/commands/docs-coverage.js +86 -0
- package/dist/commands/docs.d.ts +9 -3
- package/dist/commands/docs.js +34 -17
- package/dist/commands/publish.js +11 -1
- package/dist/commands/replica.js +8 -7
- package/dist/commands/test/mmf1.js +14 -12
- package/dist/commands/test/reporters/compact-reporter.js +50 -63
- package/dist/commands/test/reporters/files-reporter.js +5 -14
- package/dist/commands/test/reporters/silent-reporter.js +10 -10
- package/dist/commands/test/reporters/verbose-reporter.js +7 -23
- package/dist/commands/watch/deployer.js +10 -7
- package/dist/commands/watch/error-checker.js +4 -4
- package/dist/commands/watch/formatter.js +7 -4
- package/dist/commands/watch/generator.js +9 -7
- package/dist/commands/watch/tester.js +7 -5
- package/dist/commands/watch/warning-checker.js +8 -6
- package/dist/declarations/main/main.did +6 -0
- package/dist/declarations/main/main.did.d.ts +6 -0
- package/dist/declarations/main/main.did.js +6 -0
- package/dist/package.json +13 -11
- package/package.json +15 -13
- package/tsconfig.json +2 -1
package/.DS_Store
ADDED
|
Binary file
|
package/.dockerignore
ADDED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Mops CLI Changelog
|
|
2
2
|
|
|
3
|
+
## 1.9.0
|
|
4
|
+
- Add `mops docs generate` command for generating package documentation ([docs](https://docs.mops.one/cli/mops-docs-generate))
|
|
5
|
+
- Add `mops docs coverage` command for analyzing documentation coverage ([docs](https://docs.mops.one/cli/mops-docs-coverage))
|
|
6
|
+
|
|
7
|
+
## 1.8.1
|
|
8
|
+
- Exclude `node_modules` from publish command file patterns
|
|
9
|
+
|
|
3
10
|
## 1.8.0
|
|
4
11
|
- Add `mops format` command for formatting Motoko source files with Prettier and Motoko plugin ([docs](https://docs.mops.one/cli/mops-format))
|
|
5
12
|
- Add `--format` flag to `mops watch` command to enable automatic formatting during watch mode ([docs](https://docs.mops.one/cli/mops-watch#--format))
|