@modern-js/plugin-docsite 1.2.6 → 1.2.7

Sign up to get free protection for your applications and to get access to all the features.
package/.eslintrc.js ADDED
@@ -0,0 +1,8 @@
1
+ module.exports = {
2
+ root: true,
3
+ extends: ['@modern-js'],
4
+ parserOptions: {
5
+ tsconfigRootDir: __dirname,
6
+ project: ['./tsconfig.json'],
7
+ },
8
+ };
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @modern-js/plugin-docsite
2
2
 
3
+ ## 1.2.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 6cffe99d: chore:
8
+ remove react eslint rules for `modern-js` rule set.
9
+ add .eslintrc for each package to speed up linting
10
+ - 04ae5262: chore: bump @modern-js/utils to v1.4.1 in dependencies
11
+ - 60f7d8bf: feat: add tests dir to npmignore
12
+ - 5dbbeb57: fix: export extended Command type
13
+ - Updated dependencies [b8599d09]
14
+ - Updated dependencies [6cffe99d]
15
+ - Updated dependencies [04ae5262]
16
+ - Updated dependencies [60f7d8bf]
17
+ - Updated dependencies [e4cec1ce]
18
+ - Updated dependencies [3bf4f8b0]
19
+ - @modern-js/utils@1.5.0
20
+ - @modern-js/webpack@1.5.5
21
+
3
22
  ## 1.2.6
4
23
 
5
24
  ### Patch Changes
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.2.6",
14
+ "version": "1.2.7",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/js/node/index.js",
@@ -37,8 +37,8 @@
37
37
  "@babel/runtime": "^7",
38
38
  "@mdx-js/mdx": "^1.6.22",
39
39
  "@mdx-js/react": "^1.6.22",
40
- "@modern-js/utils": "^1.4.0",
41
- "@modern-js/webpack": "^1.5.4",
40
+ "@modern-js/utils": "^1.5.0",
41
+ "@modern-js/webpack": "^1.5.6",
42
42
  "antd": "^4.16.13",
43
43
  "core-js": "^3.17.2",
44
44
  "github-slugger": "^1.4.0",
@@ -58,7 +58,7 @@
58
58
  "webpack-dev-server": "^4.1.1"
59
59
  },
60
60
  "devDependencies": {
61
- "@modern-js/core": "1.7.0",
61
+ "@modern-js/core": "1.8.0",
62
62
  "@scripts/build": "0.0.0",
63
63
  "@scripts/jest-config": "0.0.0",
64
64
  "@types/core-js": "^2.5.5",
@@ -1,7 +0,0 @@
1
- import plugin from '../src';
2
-
3
- describe('plugin-docset', () => {
4
- it('default', () => {
5
- expect(plugin).toBeDefined();
6
- });
7
- });
@@ -1,13 +0,0 @@
1
- {
2
- "extends": "@modern-js/tsconfig/base",
3
- "compilerOptions": {
4
- "declaration": true,
5
- "jsx": "preserve",
6
- "baseUrl": "./",
7
- "outDir": "./out",
8
- "emitDeclarationOnly": true,
9
- "isolatedModules": true,
10
- "paths": {},
11
- "types": ["node", "jest"]
12
- }
13
- }