@modern-js/plugin-server-build 0.0.0-canary-20220414073202 → 0.0.0-canary-20220425114412

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,34 @@
1
1
  # @modern-js/plugin-server-build
2
2
 
3
+ ## 0.0.0-canary-20220425114412
4
+
5
+ ### Patch Changes
6
+
7
+ - 895fa0ff6: chore: using "workspace:\*" in devDependencies
8
+ - Updated dependencies [2d155c4c7]
9
+ - Updated dependencies [0b26b93b9]
10
+ - Updated dependencies [895fa0ff6]
11
+ - @modern-js/utils@0.0.0-canary-20220425114412
12
+ - @modern-js/server-utils@0.0.0-canary-20220425114412
13
+
14
+ ## 1.2.5
15
+
16
+ ### Patch Changes
17
+
18
+ - 6cffe99d: chore:
19
+ remove react eslint rules for `modern-js` rule set.
20
+ add .eslintrc for each package to speed up linting
21
+ - 04ae5262: chore: bump @modern-js/utils to v1.4.1 in dependencies
22
+ - 60f7d8bf: feat: add tests dir to npmignore
23
+ - Updated dependencies [b8599d09]
24
+ - Updated dependencies [6cffe99d]
25
+ - Updated dependencies [04ae5262]
26
+ - Updated dependencies [60f7d8bf]
27
+ - Updated dependencies [3bf4f8b0]
28
+ - @modern-js/utils@1.5.0
29
+ - @modern-js/server-utils@1.2.3
30
+ - @modern-js/babel-compiler@1.2.3
31
+
3
32
  ## 1.2.4
4
33
 
5
34
  ### Patch Changes
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "0.0.0-canary-20220414073202",
14
+ "version": "0.0.0-canary-20220425114412",
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": "^0.0.0-canary-20220414073202",
34
- "@modern-js/utils": "^0.0.0-canary-20220414073202"
32
+ "@modern-js/babel-compiler": "^1.2.3",
33
+ "@modern-js/server-utils": "^0.0.0-canary-20220425114412",
34
+ "@modern-js/utils": "^0.0.0-canary-20220425114412"
35
35
  },
36
36
  "devDependencies": {
37
- "@modern-js/plugin-analyze": "^0.0.0-canary-20220414073202",
37
+ "@modern-js/plugin-analyze": "0.0.0-canary-20220425114412",
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": "0.0.0-canary-20220414073202",
43
+ "@modern-js/core": "0.0.0-canary-20220425114412",
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
- }