@cosmotech/core 1.3.10 → 1.3.11

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/.eslintignore ADDED
@@ -0,0 +1,5 @@
1
+ build
2
+ dist
3
+ .docz
4
+ .github
5
+ node_modules
@@ -15,6 +15,6 @@ jobs:
15
15
  - uses: actions/setup-node@v2
16
16
  with:
17
17
  node-version: '14'
18
- - run: yarn install && yarn eslint
18
+ - run: yarn install && yarn eslint .
19
19
  env:
20
20
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -0,0 +1,6 @@
1
+ build
2
+ dist
3
+ .docz
4
+ .github
5
+ node_modules
6
+ stats.html
@@ -0,0 +1,4 @@
1
+ {
2
+ "singleQuote": true,
3
+ "printWidth": 120
4
+ }
@@ -1,5 +1,5 @@
1
1
  {
2
- "convention" : {
2
+ "convention": {
3
3
  "commitTypes": [
4
4
  "feat",
5
5
  "fix",
@@ -19,13 +19,8 @@
19
19
  "issueRegexPattern": "(^|\\s)#\\d+(\\s|$)"
20
20
  },
21
21
 
22
- "changelog" : {
23
- "commitTypes": [
24
- "feat",
25
- "fix",
26
- "perf",
27
- "merge"
28
- ],
22
+ "changelog": {
23
+ "commitTypes": ["feat", "fix", "perf", "merge"],
29
24
  "commitIgnoreRegexPattern": "^WIP ",
30
25
  "headlines": {
31
26
  "feat": "Features",
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "@cosmotech/core",
3
3
  "private": false,
4
- "version": "1.3.10",
4
+ "version": "1.3.11",
5
5
  "description": "",
6
6
  "main": "dist/index.cjs.js",
7
7
  "module": "dist/index.esm.js",
8
8
  "scripts": {
9
9
  "build": "rollup -c",
10
- "eslint": "eslint $INIT_CWD",
11
- "test": "echo \"Error: no test specified\" && exit 1"
10
+ "eslint": "eslint",
11
+ "test": "echo \"Error: no test specified\" && exit 1",
12
+ "prettier": "npx prettier -w"
12
13
  },
13
14
  "repository": {
14
15
  "type": "git",
@@ -26,7 +27,7 @@
26
27
  "@babel/preset-env": "^7.14.2",
27
28
  "@babel/preset-react": "^7.12.10",
28
29
  "@rollup/plugin-babel": "^5.2.2",
29
- "@rollup/plugin-commonjs": "^19.0.0",
30
+ "@rollup/plugin-commonjs": "^21.0.0",
30
31
  "@rollup/plugin-image": "^2.0.5",
31
32
  "@rollup/plugin-node-resolve": "^13.0.0",
32
33
  "eslint": "^7.27.0",
@@ -39,5 +40,10 @@
39
40
  "rollup-plugin-peer-deps-external": "^2.2.4",
40
41
  "rollup-plugin-postcss": "^4.0.0",
41
42
  "rollup-plugin-visualizer": "^5.5.0"
43
+ },
44
+ "dependencies": {
45
+ "eslint-config-prettier": "^8.3.0",
46
+ "eslint-plugin-prettier": "^4.0.0",
47
+ "prettier": "^2.4.1"
42
48
  }
43
49
  }