lincd-cli 0.2.52 → 0.2.53

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.
@@ -8,6 +8,7 @@
8
8
  "jsxSingleQuote": false,
9
9
  "trailingComma": "all",
10
10
  "bracketSpacing": true,
11
+ "arrowParens": "always",
11
12
  "endOfLine": "auto",
12
13
  "overrides": [
13
14
  {
@@ -18,7 +18,7 @@
18
18
  "scripts": {
19
19
  "start": "npm run server:dev",
20
20
  "build": "env-cmd -e _main,production node scripts/build.js",
21
- "postinstall": "husky install && echo 'Please run this command manually: node scripts/prepare.js'",
21
+ "postinstall": "husky install",
22
22
  "prepack": "pinst --disable",
23
23
  "postpack": "pinst --enable",
24
24
  "server:dev": "env-cmd -e _main,development nodemon --quiet --watch ./src/index.tsx ./scripts/start-server.js",
@@ -33,7 +33,7 @@
33
33
  "*.{js,ts,tsx}": [
34
34
  "prettier --write"
35
35
  ],
36
- "*.{scss,css}": [
36
+ "*.{scss,css,json}": [
37
37
  "prettier --write"
38
38
  ]
39
39
  },
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "lincd-cli",
3
- "version": "0.2.52",
3
+ "version": "0.2.53",
4
4
  "description": "Command line tools for the lincd.js library",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
7
7
  "prepublishOnly": "npm exec tsc",
8
8
  "build": "npm exec tsc",
9
9
  "_postinstall": "husky install",
10
- "prepack": "pinst --disable",
10
+ "prepack": "yarn version patch && npm exec tsc && pinst --disable",
11
11
  "postpack": "pinst --enable",
12
12
  "dev": "npm exec tsc -w",
13
13
  "prettier": "prettier \"src/**/*.{js,jsx,ts,tsx,css,scss}\" --check",