lincd-cli 0.2.69 → 0.2.70

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.
Files changed (2) hide show
  1. package/lib/utils.js +8 -2
  2. package/package.json +1 -1
package/lib/utils.js CHANGED
@@ -227,8 +227,14 @@ const getLastBuildTime = (packagePath) => {
227
227
  };
228
228
  exports.getLastBuildTime = getLastBuildTime;
229
229
  const getLastModifiedSourceTime = (packagePath) => {
230
- return (0, exports.getLastModifiedFile)(packagePath + '/@(src|data|scss)/**/*', {
231
- ignore: [packagePath + '/**/*.scss.json', packagePath + '/**/*.d.ts'],
230
+ return (0, exports.getLastModifiedFile)(packagePath + '/@(src|data|scss|modules)/**/*', {
231
+ ignore: [
232
+ packagePath + '/**/*.scss.json',
233
+ packagePath + '/**/*.d.ts',
234
+ packagePath + '/**/node_modules/**/*',
235
+ packagePath + '/**/lib/**/*',
236
+ packagePath + '/**/dist/**/*',
237
+ ],
232
238
  });
233
239
  };
234
240
  exports.getLastModifiedSourceTime = getLastModifiedSourceTime;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lincd-cli",
3
- "version": "0.2.69",
3
+ "version": "0.2.70",
4
4
  "description": "Command line tools for the lincd.js library",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {