@modern-js/plugin-server-build 1.2.4 → 1.2.7

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/.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,53 @@
1
1
  # @modern-js/plugin-server-build
2
2
 
3
+ ## 1.2.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 69a728375: fix: remove exports.jsnext:source after publish
8
+ - Updated dependencies [cd7346b0d]
9
+ - Updated dependencies [0e0537005]
10
+ - Updated dependencies [69a728375]
11
+ - @modern-js/utils@1.7.2
12
+ - @modern-js/server-utils@1.2.5
13
+ - @modern-js/babel-compiler@1.2.4
14
+
15
+ ## 1.2.6
16
+
17
+ ### Patch Changes
18
+
19
+ - 895fa0ff: chore: using "workspace:\*" in devDependencies
20
+ - Updated dependencies [2d155c4c]
21
+ - Updated dependencies [123e432d]
22
+ - Updated dependencies [e5a9b26d]
23
+ - Updated dependencies [0b26b93b]
24
+ - Updated dependencies [123e432d]
25
+ - Updated dependencies [f9f66ef9]
26
+ - Updated dependencies [592edabc]
27
+ - Updated dependencies [895fa0ff]
28
+ - Updated dependencies [3578913e]
29
+ - Updated dependencies [1c3beab3]
30
+ - @modern-js/utils@1.6.0
31
+ - @modern-js/server-utils@1.2.4
32
+
33
+ ## 1.2.5
34
+
35
+ ### Patch Changes
36
+
37
+ - 6cffe99d: chore:
38
+ remove react eslint rules for `modern-js` rule set.
39
+ add .eslintrc for each package to speed up linting
40
+ - 04ae5262: chore: bump @modern-js/utils to v1.4.1 in dependencies
41
+ - 60f7d8bf: feat: add tests dir to npmignore
42
+ - Updated dependencies [b8599d09]
43
+ - Updated dependencies [6cffe99d]
44
+ - Updated dependencies [04ae5262]
45
+ - Updated dependencies [60f7d8bf]
46
+ - Updated dependencies [3bf4f8b0]
47
+ - @modern-js/utils@1.5.0
48
+ - @modern-js/server-utils@1.2.3
49
+ - @modern-js/babel-compiler@1.2.3
50
+
3
51
  ## 1.2.4
4
52
 
5
53
  ### Patch Changes
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.2.4",
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",
@@ -29,18 +29,18 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@babel/runtime": "^7",
32
- "@modern-js/babel-compiler": "^1.2.2",
33
- "@modern-js/server-utils": "^1.2.2",
34
- "@modern-js/utils": "^1.3.7"
32
+ "@modern-js/babel-compiler": "^1.2.4",
33
+ "@modern-js/server-utils": "^1.2.5",
34
+ "@modern-js/utils": "^1.7.2"
35
35
  },
36
36
  "devDependencies": {
37
- "@modern-js/plugin-analyze": "^1.3.5",
37
+ "@modern-js/plugin-analyze": "1.4.2",
38
38
  "@types/babel__core": "^7.1.15",
39
39
  "@types/jest": "^26",
40
40
  "@types/node": "^14",
41
41
  "ts-jest": "^27.0.5",
42
42
  "typescript": "^4",
43
- "@modern-js/core": "1.6.1",
43
+ "@modern-js/core": "1.10.1",
44
44
  "@scripts/build": "0.0.0",
45
45
  "jest": "^27",
46
46
  "@scripts/jest-config": "0.0.0"
@@ -1,7 +0,0 @@
1
- import plugin from '../src';
2
-
3
- describe('plugin-server-build', () => {
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
- }