decaf-cli 0.0.5 → 0.0.6

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 (3) hide show
  1. package/package.json +6 -1
  2. package/.aiignore +0 -11
  3. package/.swcrc +0 -8
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "decaf-cli",
3
3
  "author": "James Smith",
4
- "version": "0.0.5",
4
+ "version": "0.0.6",
5
5
  "license": "MIT, Anti-996",
6
6
  "homepage": "https://github.com/djalbat/decaf-cli",
7
7
  "description": "Caffeine free tests and assertions.",
@@ -29,6 +29,11 @@
29
29
  "watch": "npm run clean && npm run batch && npm run incremental",
30
30
  "watch-debug": "npm run clean && npm run batch-debug && npm run incremental-debug"
31
31
  },
32
+ "files": [
33
+ "src",
34
+ "lib",
35
+ "decaf.js"
36
+ ],
32
37
  "bin": {
33
38
  "watchful": "./decaf.js"
34
39
  }
package/.aiignore DELETED
@@ -1,11 +0,0 @@
1
- .idea
2
- .DS_Store
3
- node_modules
4
- npm-debug.log
5
- package-lock.json
6
-
7
- .git
8
- .swcrc
9
- .gitignore
10
- lib
11
- license.txt
package/.swcrc DELETED
@@ -1,8 +0,0 @@
1
- {
2
- "module": {
3
- "type": "commonjs"
4
- },
5
- "jsc": {
6
- "target": "es2022"
7
- }
8
- }