ic-mops 0.17.2 → 0.17.3
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/commands/publish.js +3 -0
- package/package.json +1 -1
package/commands/publish.js
CHANGED
|
@@ -171,9 +171,12 @@ export async function publish({noDocs} = {}) {
|
|
|
171
171
|
'mops.toml',
|
|
172
172
|
'README.md',
|
|
173
173
|
'LICENSE',
|
|
174
|
+
'NOTICE',
|
|
174
175
|
'!.mops/**',
|
|
175
176
|
'!test/**',
|
|
177
|
+
'!tests/**',
|
|
176
178
|
'!**/*.test.mo',
|
|
179
|
+
'!**/*.Test.mo',
|
|
177
180
|
];
|
|
178
181
|
let files = config.package.files || ['**/*.mo'];
|
|
179
182
|
files = [...files, ...defaultFiles];
|