@jeromefitz/tsconfig 1.1.2 → 1.1.3-canary.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/LICENSE +1 -1
  2. package/package.json +13 -14
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 Nice Group of People, LLC
3
+ Copyright (c) 2021-2023 Nice Group of People, LLC
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,33 +1,32 @@
1
1
  {
2
- "private": false,
3
- "license": "MIT",
4
- "version": "1.1.2",
5
2
  "name": "@jeromefitz/tsconfig",
3
+ "version": "1.1.3-canary.1",
4
+ "type": "module",
6
5
  "description": "TypeScript Configuration",
6
+ "repository": "jeromefitz/packages.git",
7
7
  "author": {
8
8
  "name": "Jerome Fitzgerald",
9
9
  "email": "j@jeromefitzgerald.com",
10
10
  "url": "https://jeromefitzgerald.com"
11
11
  },
12
- "repository": "jeromefitz/packages.git",
13
- "publishConfig": {
14
- "registry": "https://registry.npmjs.org/"
15
- },
12
+ "license": "MIT",
13
+ "private": false,
16
14
  "engines": {
17
15
  "node": ">=16"
18
16
  },
19
- "type": "module",
20
- "sideEffects": false,
21
17
  "scripts": {
22
- "build": "tsup-node",
18
+ "build": "pnpm run clean && pnpm run copy",
23
19
  "clean": "rm -rf .turbo && rm -rf dist",
24
20
  "clean:install": "pnpm run clean && rm -rf node_modules",
25
21
  "copy": "mkdir -p ./dist && ./scripts/copy.sh",
26
- "dev": "tsup-node --watch",
22
+ "dev": "echo '#tsup-node --watch'",
27
23
  "format:lint": "pnpm run lint:eslint --fix && pnpm run format:prettier --write",
28
24
  "format:prettier": "prettier \"./src/**/*.{cjs,js,jsx,mjs,ts,tsx,json,md,mdx,css,html,yml,yaml,scss}\" --ignore-unknown --loglevel warn",
29
- "lint": "pnpm run format:prettier --check && pnpm run lint:eslint",
30
- "lint:eslint": "eslint ./src --ext cjs,js,jsx,mjs,ts,tsx --max-warnings=0",
25
+ "lint": "pnpm run format:prettier --check",
31
26
  "semantic-release": "semantic-release"
32
- }
27
+ },
28
+ "publishConfig": {
29
+ "registry": "https://registry.npmjs.org/"
30
+ },
31
+ "sideEffects": false
33
32
  }