esbuild-ignore-with-comments-plugin 0.3.26 → 0.3.28
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.
- package/README.md +8 -0
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -4,6 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
Allows inserting comments into TypeScript source files. ESBuild will ignore these files during build.
|
|
6
6
|
|
|
7
|
+
This utility has been developed for the [Goldstack](https://goldstack.party) starter project builder. Check it out for starting your next project ❤️
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install esbuild-ignore-with-comments-plugin
|
|
12
|
+
```
|
|
13
|
+
|
|
7
14
|
## Usage
|
|
8
15
|
|
|
9
16
|
Add to any `.ts` or `.tsx` file the following comment:
|
|
@@ -61,3 +68,4 @@ Also note that if you want to add a file to multiple groups, you need to include
|
|
|
61
68
|
/* esbuild-ignore server */
|
|
62
69
|
/* esbuild-ignore ui */
|
|
63
70
|
```
|
|
71
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "esbuild-ignore-with-comments-plugin",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.28",
|
|
4
4
|
"description": "esbuild Plugin for ignoring files with specific comments in them",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"node",
|
|
@@ -28,19 +28,18 @@
|
|
|
28
28
|
"compile-watch:light": "nodemon --watch ./src/ -e '*' --exec 'yarn compile'",
|
|
29
29
|
"coverage": "jest --collect-coverage --passWithNoTests --config=./jest.config.js --runInBand",
|
|
30
30
|
"prepublishOnly": "yarn run build",
|
|
31
|
-
"publish": "
|
|
31
|
+
"publish": "yarn npm publish --tolerate-republish",
|
|
32
32
|
"test": "jest --passWithNoTests --config=./jest.config.js --runInBand",
|
|
33
|
-
"version:apply": "
|
|
33
|
+
"version:apply": "yarn version $@ && yarn version apply"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@goldstack/utils-git": "0.2.22",
|
|
37
36
|
"@swc/core": "^1.15.8",
|
|
38
37
|
"@swc/jest": "^0.2.39",
|
|
39
38
|
"@types/jest": "^30.0.0",
|
|
40
39
|
"@types/node": "^25.0.3",
|
|
41
40
|
"esbuild": "^0.25.6",
|
|
42
41
|
"jest": "^30.2.0",
|
|
43
|
-
"rimraf": "^
|
|
42
|
+
"rimraf": "^6.1.2",
|
|
44
43
|
"typescript": "^5.9.3"
|
|
45
44
|
},
|
|
46
45
|
"peerDependencies": {
|