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 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))
@@ -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];
@@ -194,6 +194,7 @@ export async function publish(options = {}) {
194
194
  '!benchmark/**',
195
195
  '!**/*.bench.mo',
196
196
  '!**/*.Bench.mo',
197
+ '!**/node_modules/**',
197
198
  ];
198
199
  let files = config.package.files || ['**/*.mo'];
199
200
  files = [...files, ...defaultFiles];
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ic-mops",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "mops": "bin/mops.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ic-mops",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "mops": "dist/bin/mops.js",