@goldstack/utils-esbuild 0.4.1

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/README.md +3 -0
  2. package/package.json +48 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Goldstack Esbuild Utilities
2
+
3
+ Simple utilities for working with [esbuild](https://esbuild.github.io/).
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@goldstack/utils-esbuild",
3
+ "version": "0.4.1",
4
+ "description": "Utilities for esbuild.",
5
+ "keywords": [
6
+ "goldstack",
7
+ "utility",
8
+ "esbuild"
9
+ ],
10
+ "homepage": "https://goldstack.party",
11
+ "bugs": {
12
+ "url": "https://github.com/goldstack/goldstack/issues"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/goldstack/goldstack-lib"
17
+ },
18
+ "license": "MIT",
19
+ "author": "Max Rohde",
20
+ "sideEffects": false,
21
+ "main": "dist/src/utilsEsbuild.js",
22
+ "scripts": {
23
+ "build": "yarn clean && yarn compile",
24
+ "build:watch": "yarn clean && yarn compile-watch",
25
+ "clean": "rimraf ./dist",
26
+ "compile": "tsc -p tsconfig.json",
27
+ "compile-watch": "tsc -p tsconfig.json --watch",
28
+ "compile-watch:light": "nodemon --watch ./src/ -e '*' --exec 'yarn compile'",
29
+ "coverage": "jest --collect-coverage --passWithNoTests --config=./jest.config.js --runInBand",
30
+ "prepublishOnly": "yarn run build",
31
+ "publish": "utils-git changed --exec \"yarn npm publish $@\"",
32
+ "test-ci": "jest --passWithNoTests --config=./jest.config.js --runInBand",
33
+ "version:apply": "utils-git changed --exec \"yarn version $@ && yarn version apply\"",
34
+ "version:apply:force": "yarn version $@ && yarn version apply"
35
+ },
36
+ "devDependencies": {
37
+ "@goldstack/utils-git": "0.1.34",
38
+ "@types/jest": "^27.5.1",
39
+ "@types/node": "^17.0.33",
40
+ "jest": "^28.1.0",
41
+ "rimraf": "^3.0.2",
42
+ "ts-jest": "^28.0.2",
43
+ "typescript": "^4.6.4"
44
+ },
45
+ "publishConfig": {
46
+ "main": "dist/src/utilsEsbuild.js"
47
+ }
48
+ }