lincd-cli 0.2.67 → 0.2.68

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 +7 -1
  2. package/package.json +1 -1
package/lib/utils.js CHANGED
@@ -173,7 +173,13 @@ const getLastBuildTime = (packagePath) => {
173
173
  exports.getLastBuildTime = getLastBuildTime;
174
174
  const getLastModifiedSourceTime = (packagePath) => {
175
175
  return (0, exports.getLastModifiedFile)(packagePath + '/@(src|data|scss|modules)/**/*', {
176
- ignore: [packagePath + '/**/*.scss.json', packagePath + '/**/*.d.ts'],
176
+ ignore: [
177
+ packagePath + '/**/*.scss.json',
178
+ packagePath + '/**/*.d.ts',
179
+ packagePath + '/**/node_modules/**/*',
180
+ packagePath + '/**/lib/**/*',
181
+ packagePath + '/**/dist/**/*',
182
+ ],
177
183
  });
178
184
  };
179
185
  exports.getLastModifiedSourceTime = getLastModifiedSourceTime;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lincd-cli",
3
- "version": "0.2.67",
3
+ "version": "0.2.68",
4
4
  "description": "Command line tools for the lincd.js library",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {