ic-mops 1.8.0 → 1.8.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.
- package/CHANGELOG.md +3 -0
- package/commands/publish.ts +1 -0
- package/dist/commands/publish.js +1 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Mops CLI Changelog
|
|
2
2
|
|
|
3
|
+
## 1.8.1
|
|
4
|
+
- Exclude `node_modules` from publish command file patterns
|
|
5
|
+
|
|
3
6
|
## 1.8.0
|
|
4
7
|
- Add `mops format` command for formatting Motoko source files with Prettier and Motoko plugin ([docs](https://docs.mops.one/cli/mops-format))
|
|
5
8
|
- Add `--format` flag to `mops watch` command to enable automatic formatting during watch mode ([docs](https://docs.mops.one/cli/mops-watch#--format))
|
package/commands/publish.ts
CHANGED
|
@@ -217,6 +217,7 @@ export async function publish(options : {docs ?: boolean, test ?: boolean, bench
|
|
|
217
217
|
'!benchmark/**',
|
|
218
218
|
'!**/*.bench.mo',
|
|
219
219
|
'!**/*.Bench.mo',
|
|
220
|
+
'!**/node_modules/**',
|
|
220
221
|
];
|
|
221
222
|
let files = config.package.files || ['**/*.mo'];
|
|
222
223
|
files = [...files, ...defaultFiles];
|
package/dist/commands/publish.js
CHANGED
package/dist/package.json
CHANGED