@sprucelabs/esm-postbuild 6.0.2 → 6.0.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.
Files changed (1) hide show
  1. package/package.json +15 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sprucelabs/esm-postbuild",
3
- "version": "6.0.2",
3
+ "version": "6.0.3",
4
4
  "description": "Script to do thins after build of esm modules",
5
5
  "main": "build/esm-postbuild.js",
6
6
  "repository": "git@github.com:sprucelabsai-community/esm-postbuild.git",
@@ -28,37 +28,37 @@
28
28
  "build.dev": "npm run clean && npm run build.tsc --sourceMap",
29
29
  "build.dist": "npm run clean && npm run build.tsc",
30
30
  "build.resolve-paths": "true",
31
- "build.tsc": "yarn build.copy-files && tsc",
32
- "clean": "yarn clean.build",
33
- "clean.all": "yarn clean.dependencies && yarn clean.build",
31
+ "build.tsc": "yarn run build.copy-files && tsc",
32
+ "clean": "yarn run clean.build",
33
+ "clean.all": "yarn run clean.dependencies && yarn run clean.build",
34
34
  "clean.build": "rm -rf build/",
35
35
  "clean.dependencies": "rm -rf node_modules/ package-lock.json yarn.lock",
36
36
  "esm-postbuild": "esm-postbuild",
37
- "fix.lint": "eslint --fix --cache",
38
- "lint": "eslint --cache",
37
+ "fix.lint": "eslint --fix --cache '**/*.ts'",
38
+ "lint": "eslint --cache '**/*.ts'",
39
39
  "lint.tsc": "tsc -p . --noEmit",
40
- "post.watch.build": "yarn build.copy-files && yarn build.resolve-paths",
41
- "rebuild": "yarn clean.all && yarn install && yarn build.dev",
40
+ "post.watch.build": "yarn run build.copy-files && yarn run build.resolve-paths",
41
+ "rebuild": "yarn run clean.all && yarn install && yarn run build.dev",
42
42
  "release": "semantic-release",
43
- "resolve-paths.lint": "yarn build.resolve-paths ; yarn lint",
43
+ "resolve-paths.lint": "yarn run build.resolve-paths ; yarn run lint",
44
44
  "test": "jest",
45
- "update.dependencies": "yarn clean.dependencies && yarn",
45
+ "update.dependencies": "yarn run clean.dependencies && yarn",
46
46
  "upgrade.packages": "yarn-upgrade-all && rm -f yarn.lock ; yarn ; yarn fix.lint | true",
47
47
  "upgrade.packages.all": "yarn install && yarn upgrade.packages",
48
48
  "upgrade.packages.test": "yarn upgrade.packages.all && yarn lint && yarn build && yarn test",
49
- "watch.build.dev": "tsc-watch --sourceMap --onCompilationComplete 'yarn post.watch.build'",
50
- "watch.lint": "concurrently 'yarn lint' \"chokidar 'src/**/*' -c 'yarn lint.tsc'\"",
49
+ "watch.build.dev": "tsc-watch --sourceMap --onCompilationComplete 'yarn run post.watch.build'",
50
+ "watch.lint": "concurrently 'yarn run lint' \"chokidar 'src/**/*' -c 'yarn run lint.tsc'\"",
51
51
  "watch.tsc": "tsc -w",
52
- "watch.rebuild": "yarn clean.all && yarn install && yarn watch.build.dev"
52
+ "watch.rebuild": "yarn run clean.all && yarn install && yarn run watch.build.dev"
53
53
  },
54
54
  "dependencies": {
55
- "@sprucelabs/globby": "^2.0.2",
55
+ "@sprucelabs/globby": "^2.0.3",
56
56
  "chalk": "^4.1.2",
57
57
  "yargs": "^17.7.2"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@sprucelabs/semantic-release": "^5.0.1",
61
- "@sprucelabs/test": "^9.0.3",
61
+ "@sprucelabs/test": "^9.0.4",
62
62
  "@types/fs-extra": "^11.0.4",
63
63
  "@types/node": "^20.12.7",
64
64
  "chokidar-cli": "^3.0.0",