@edifice.io/cli 1.6.0-develop.10 → 1.6.0-develop.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edifice.io/cli",
3
- "version": "1.6.0-develop.10",
3
+ "version": "1.6.0-develop.15",
4
4
  "description": "Edifice Frontend CLI",
5
5
  "keywords": [
6
6
  "frontend",
@@ -232,6 +232,8 @@ export const publish = async (options) => {
232
232
  const changed = changedFiles.some(
233
233
  (file) =>
234
234
  file.startsWith(path.join(pkg.packageDir, "src")) ||
235
+ // check if any files in the assets directory were modified
236
+ file.startsWith(path.join(pkg.packageDir, "assets")) ||
235
237
  file.startsWith(path.join(pkg.packageDir, "package.json")),
236
238
  );
237
239
  return changed;