view-ignored 0.3.0 → 0.3.2

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/bin/viewig +4 -4
  2. package/out/package.json +122 -0
  3. package/package.json +122 -121
package/bin/viewig CHANGED
@@ -1,4 +1,4 @@
1
- #! /usr/bin/env node
2
- import {programInit} from '../out/src/cli.js';
3
-
4
- programInit();
1
+ #! /usr/bin/env node
2
+ import {programInit} from '../out/src/cli.js';
3
+
4
+ programInit();
@@ -0,0 +1,122 @@
1
+ {
2
+ "name": "view-ignored",
3
+ "version": "0.3.1",
4
+ "description": "Retrieve list of files ignored/included by Git, NPM, Yarn and VSC Extension.",
5
+ "type": "module",
6
+ "bin": {
7
+ "viewig": "./bin/viewig",
8
+ "view-ignored": "./bin/viewig"
9
+ },
10
+ "scripts": {
11
+ "prerelease": "pnpm lint && pnpm build:pub && pnpm test",
12
+ "test": "pnpm mocha ./out/test/**/*.test.js",
13
+ "build": "pnpm shx rm -rf out && pnpm tsc",
14
+ "build:pub": "pnpm shx rm -rf out && pnpm tsc --sourceMap false",
15
+ "build:watch": "pnpm shx rm -rf out && pnpm tsc --watch",
16
+ "lint": "pnpm xo",
17
+ "lint:fix": "pnpm xo --fix",
18
+ "release:major": "pnpm release-it --increment=major",
19
+ "release:minor": "pnpm release-it --increment=minor",
20
+ "release:patch": "pnpm release-it --increment=patch"
21
+ },
22
+ "author": "Mopsgamer",
23
+ "license": "ISC",
24
+ "main": "./out/src/index.js",
25
+ "files": [
26
+ "/bin",
27
+ "/out/src",
28
+ "/out/package.json"
29
+ ],
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/Mopsgamer/view-ignored.git"
33
+ },
34
+ "bugs": {
35
+ "url": "https://github.com/Mopsgamer/view-ignored/issues"
36
+ },
37
+ "homepage": "https://github.com/Mopsgamer/view-ignored",
38
+ "exports": {
39
+ ".": "./out/src/index.js",
40
+ "./browser": "./out/src/browser/index.js"
41
+ },
42
+ "release-it": {
43
+ "hooks": {
44
+ "before:init": "pnpm prerelease"
45
+ },
46
+ "plugins": {
47
+ "@release-it/keep-a-changelog": {
48
+ "filename": "CHANGELOG.md"
49
+ }
50
+ },
51
+ "github": {
52
+ "release": true,
53
+ "draft": false,
54
+ "releaseName": "${version}"
55
+ },
56
+ "npm": {
57
+ "publish": true
58
+ }
59
+ },
60
+ "xo": {
61
+ "ignores": "/out/",
62
+ "rules": {
63
+ "@typescript-eslint/promise-function-async": "off",
64
+ "@typescript-eslint/use-unknown-in-catch-callback-variable": "off",
65
+ "@typescript-eslint/no-unused-vars": "error",
66
+ "n/no-unpublished-bin": "off",
67
+ "linebreak-style": [
68
+ "error",
69
+ "unix"
70
+ ]
71
+ }
72
+ },
73
+ "publishConfig": {
74
+ "access": "public"
75
+ },
76
+ "directories": {
77
+ "lib": "out/src"
78
+ },
79
+ "dependencies": {
80
+ "@humanwhocodes/gitignore-to-minimatch": "^1.0.2",
81
+ "@m234/nerd-fonts": "^0.1.3",
82
+ "ansi-regex": "^6.1.0",
83
+ "boxen": "^8.0.1",
84
+ "chalk": "^5.3.0",
85
+ "commander": "^12.1.0",
86
+ "jsonify-paths": "^1.1.0",
87
+ "listr2": "^8.2.5",
88
+ "load-plugin": "^6.0.3",
89
+ "minimatch": "^10.0.1",
90
+ "p-limit": "^6.1.0",
91
+ "treeify": "^1.1.0",
92
+ "tslib": "^2.7.0",
93
+ "yaml": "^2.5.1"
94
+ },
95
+ "devDependencies": {
96
+ "@release-it/keep-a-changelog": "^5.0.0",
97
+ "@types/mocha": "^10.0.9",
98
+ "@types/node": "^20.16.11",
99
+ "@types/treeify": "^1.0.3",
100
+ "fs-fixture": "^2.4.0",
101
+ "globals": "^15.11.0",
102
+ "mocha": "^10.7.3",
103
+ "release-it": "^17.8.2",
104
+ "shx": "^0.3.4",
105
+ "typescript": "^5.6.3",
106
+ "xo": "^0.59.3"
107
+ },
108
+ "keywords": [
109
+ "tree",
110
+ "ls-tree",
111
+ "ignore",
112
+ "gitignore",
113
+ "npmignore",
114
+ "vscodeignore",
115
+ "cli",
116
+ "fs",
117
+ "file-system",
118
+ "output",
119
+ "project",
120
+ "migration"
121
+ ]
122
+ }
package/package.json CHANGED
@@ -1,121 +1,122 @@
1
- {
2
- "name": "view-ignored",
3
- "version": "0.3.0",
4
- "description": "Retrieve list of files ignored/included by Git, NPM, Yarn and VSC Extension.",
5
- "type": "module",
6
- "bin": {
7
- "viewig": "./bin/viewig",
8
- "view-ignored": "./bin/viewig"
9
- },
10
- "scripts": {
11
- "prerelease": "pnpm lint && pnpm build:pub && pnpm test",
12
- "test": "pnpm mocha ./out/test/**/*.test.js",
13
- "build": "pnpm shx rm -rf out && pnpm tsc",
14
- "build:pub": "pnpm shx rm -rf out && pnpm tsc --sourceMap false",
15
- "build:watch": "pnpm shx rm -rf out && pnpm tsc --watch",
16
- "lint": "pnpm xo",
17
- "lint:fix": "pnpm xo --fix",
18
- "release:major": "pnpm release-it --increment=major",
19
- "release:minor": "pnpm release-it --increment=minor",
20
- "release:patch": "pnpm release-it --increment=patch"
21
- },
22
- "author": "Mopsgamer",
23
- "license": "ISC",
24
- "main": "./out/src/index.js",
25
- "files": [
26
- "/bin",
27
- "/out/src"
28
- ],
29
- "repository": {
30
- "type": "git",
31
- "url": "https://github.com/Mopsgamer/view-ignored.git"
32
- },
33
- "bugs": {
34
- "url": "https://github.com/Mopsgamer/view-ignored/issues"
35
- },
36
- "homepage": "https://github.com/Mopsgamer/view-ignored",
37
- "exports": {
38
- ".": "./out/src/index.js",
39
- "./browser": "./out/src/browser/index.js"
40
- },
41
- "release-it": {
42
- "hooks": {
43
- "before:init": "pnpm prerelease"
44
- },
45
- "plugins": {
46
- "@release-it/keep-a-changelog": {
47
- "filename": "CHANGELOG.md"
48
- }
49
- },
50
- "github": {
51
- "release": true,
52
- "draft": false,
53
- "releaseName": "${version}"
54
- },
55
- "npm": {
56
- "publish": true
57
- }
58
- },
59
- "xo": {
60
- "ignores": "/out/",
61
- "rules": {
62
- "@typescript-eslint/promise-function-async": "off",
63
- "@typescript-eslint/use-unknown-in-catch-callback-variable": "off",
64
- "@typescript-eslint/no-unused-vars": "error",
65
- "n/no-unpublished-bin": "off",
66
- "linebreak-style": [
67
- "error",
68
- "unix"
69
- ]
70
- }
71
- },
72
- "publishConfig": {
73
- "access": "public"
74
- },
75
- "directories": {
76
- "lib": "out/src"
77
- },
78
- "dependencies": {
79
- "@humanwhocodes/gitignore-to-minimatch": "^1.0.2",
80
- "@m234/nerd-fonts": "^0.1.2",
81
- "ansi-regex": "^6.1.0",
82
- "boxen": "^8.0.1",
83
- "chalk": "^5.3.0",
84
- "commander": "^12.1.0",
85
- "jsonify-paths": "^1.1.0",
86
- "listr2": "^8.2.4",
87
- "load-plugin": "^6.0.3",
88
- "minimatch": "^10.0.1",
89
- "p-limit": "^6.1.0",
90
- "treeify": "^1.1.0",
91
- "tslib": "^2.7.0",
92
- "yaml": "^2.5.1"
93
- },
94
- "devDependencies": {
95
- "@release-it/keep-a-changelog": "^5.0.0",
96
- "@types/mocha": "^10.0.8",
97
- "@types/node": "^20.16.5",
98
- "@types/treeify": "^1.0.3",
99
- "fs-fixture": "^2.4.0",
100
- "globals": "^15.9.0",
101
- "mocha": "^10.7.3",
102
- "release-it": "^17.6.0",
103
- "shx": "^0.3.4",
104
- "typescript": "^5.6.2",
105
- "xo": "^0.59.3"
106
- },
107
- "keywords": [
108
- "tree",
109
- "ls-tree",
110
- "ignore",
111
- "gitignore",
112
- "npmignore",
113
- "vscodeignore",
114
- "cli",
115
- "fs",
116
- "file-system",
117
- "output",
118
- "project",
119
- "migration"
120
- ]
121
- }
1
+ {
2
+ "name": "view-ignored",
3
+ "version": "0.3.2",
4
+ "description": "Retrieve list of files ignored/included by Git, NPM, Yarn and VSC Extension.",
5
+ "type": "module",
6
+ "bin": {
7
+ "viewig": "./bin/viewig",
8
+ "view-ignored": "./bin/viewig"
9
+ },
10
+ "scripts": {
11
+ "prerelease": "pnpm lint && pnpm build:pub && pnpm test",
12
+ "test": "pnpm mocha ./out/test/**/*.test.js",
13
+ "build": "pnpm shx rm -rf out && pnpm tsc",
14
+ "build:pub": "pnpm shx rm -rf out && pnpm tsc --sourceMap false",
15
+ "build:watch": "pnpm shx rm -rf out && pnpm tsc --watch",
16
+ "lint": "pnpm xo",
17
+ "lint:fix": "pnpm xo --fix",
18
+ "release:major": "pnpm release-it --increment=major",
19
+ "release:minor": "pnpm release-it --increment=minor",
20
+ "release:patch": "pnpm release-it --increment=patch"
21
+ },
22
+ "author": "Mopsgamer",
23
+ "license": "ISC",
24
+ "main": "./out/src/index.js",
25
+ "files": [
26
+ "/bin",
27
+ "/out/src",
28
+ "/out/package.json"
29
+ ],
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/Mopsgamer/view-ignored.git"
33
+ },
34
+ "bugs": {
35
+ "url": "https://github.com/Mopsgamer/view-ignored/issues"
36
+ },
37
+ "homepage": "https://github.com/Mopsgamer/view-ignored",
38
+ "exports": {
39
+ ".": "./out/src/index.js",
40
+ "./browser": "./out/src/browser/index.js"
41
+ },
42
+ "release-it": {
43
+ "hooks": {
44
+ "before:init": "pnpm prerelease"
45
+ },
46
+ "plugins": {
47
+ "@release-it/keep-a-changelog": {
48
+ "filename": "CHANGELOG.md"
49
+ }
50
+ },
51
+ "github": {
52
+ "release": true,
53
+ "draft": false,
54
+ "releaseName": "${version}"
55
+ },
56
+ "npm": {
57
+ "publish": true
58
+ }
59
+ },
60
+ "xo": {
61
+ "ignores": "/out/",
62
+ "rules": {
63
+ "@typescript-eslint/promise-function-async": "off",
64
+ "@typescript-eslint/use-unknown-in-catch-callback-variable": "off",
65
+ "@typescript-eslint/no-unused-vars": "error",
66
+ "n/no-unpublished-bin": "off",
67
+ "linebreak-style": [
68
+ "error",
69
+ "unix"
70
+ ]
71
+ }
72
+ },
73
+ "publishConfig": {
74
+ "access": "public"
75
+ },
76
+ "directories": {
77
+ "lib": "out/src"
78
+ },
79
+ "dependencies": {
80
+ "@humanwhocodes/gitignore-to-minimatch": "^1.0.2",
81
+ "@m234/nerd-fonts": "^0.1.3",
82
+ "ansi-regex": "^6.1.0",
83
+ "boxen": "^8.0.1",
84
+ "chalk": "^5.3.0",
85
+ "commander": "^12.1.0",
86
+ "jsonify-paths": "^1.1.0",
87
+ "listr2": "^8.2.5",
88
+ "load-plugin": "^6.0.3",
89
+ "minimatch": "^10.0.1",
90
+ "p-limit": "^6.1.0",
91
+ "treeify": "^1.1.0",
92
+ "tslib": "^2.7.0",
93
+ "yaml": "^2.5.1"
94
+ },
95
+ "devDependencies": {
96
+ "@release-it/keep-a-changelog": "^5.0.0",
97
+ "@types/mocha": "^10.0.9",
98
+ "@types/node": "^20.16.11",
99
+ "@types/treeify": "^1.0.3",
100
+ "fs-fixture": "^2.4.0",
101
+ "globals": "^15.11.0",
102
+ "mocha": "^10.7.3",
103
+ "release-it": "^17.8.2",
104
+ "shx": "^0.3.4",
105
+ "typescript": "^5.6.3",
106
+ "xo": "^0.59.3"
107
+ },
108
+ "keywords": [
109
+ "tree",
110
+ "ls-tree",
111
+ "ignore",
112
+ "gitignore",
113
+ "npmignore",
114
+ "vscodeignore",
115
+ "cli",
116
+ "fs",
117
+ "file-system",
118
+ "output",
119
+ "project",
120
+ "migration"
121
+ ]
122
+ }