create-packer 1.24.32 → 1.24.33
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/package.json +1 -1
- package/template/web-app/react/.eslintrc +2 -1
- package/template/web-app/react/.stylelintrc +1 -1
- package/template/web-app/react/tsconfig.json +2 -1
- package/template/web-app/react-webpack/.eslintrc +1 -1
- package/template/web-app/react-webpack/.stylelintrc +1 -1
- package/template/web-app/react-webpack/tsconfig.json +2 -1
- package/template/web-app/vue/.eslintrc +2 -1
- package/template/web-app/vue/.stylelintrc +1 -1
- package/template/web-app/vue/tsconfig.json +2 -1
- package/template/web-extension/.eslintrc +1 -1
- package/template/web-extension/.stylelintrc +1 -1
- package/template/web-extension/tsconfig.json +2 -1
- package/template/workspace/nx/node_modules/.pnpm/minipass-fetch@3.0.3/node_modules/minipass-sized/.gitignore +22 -0
- package/template/workspace/nx/node_modules/.pnpm/minipass-sized@1.0.3/node_modules/minipass-sized/.gitignore +22 -0
- package/template/workspace/nx/node_modules/.pnpm/node_modules/minipass-sized/.gitignore +22 -0
- package/template/workspace/nx/node_modules/.pnpm/node_modules/npm-normalize-package-bin/.gitignore +24 -0
- package/template/workspace/nx/node_modules/.pnpm/npm-bundled@1.1.2/node_modules/npm-normalize-package-bin/.gitignore +24 -0
- package/template/workspace/nx/node_modules/.pnpm/npm-normalize-package-bin@1.0.1/node_modules/npm-normalize-package-bin/.gitignore +24 -0
- package/template/workspace/nx/node_modules/.pnpm/npm-packlist@5.1.1/node_modules/npm-normalize-package-bin/.gitignore +24 -0
package/package.json
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"useJSXTextNode": true
|
|
35
35
|
},
|
|
36
|
-
"ignorePatterns": ["dist/**/*.*"],
|
|
36
|
+
"ignorePatterns": ["dist/**/*.*", ".vscode/**/*.*", ".history/**/*.*"],
|
|
37
37
|
"rules": {
|
|
38
38
|
"import/export": "off",
|
|
39
39
|
"import/namespace": "off",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
]
|
|
54
54
|
}
|
|
55
55
|
],
|
|
56
|
+
"no-case-declarations": "off",
|
|
56
57
|
"@typescript-eslint/no-var-requires": 0,
|
|
57
58
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
58
59
|
"@typescript-eslint/no-explicit-any": 0,
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"jsx": true
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
|
-
"ignorePatterns": ["dist/**/*.*"],
|
|
37
|
+
"ignorePatterns": ["dist/**/*.*", ".vscode/**/*.*", ".history/**/*.*"],
|
|
38
38
|
"rules": {
|
|
39
39
|
"import/export": "off",
|
|
40
40
|
"import/namespace": "off",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
]
|
|
55
55
|
}
|
|
56
56
|
],
|
|
57
|
+
"no-case-declarations": "off",
|
|
57
58
|
"@typescript-eslint/no-var-requires": 0,
|
|
58
59
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
59
60
|
"@typescript-eslint/no-explicit-any": 0,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# ignore most things, include some others
|
|
2
|
+
/*
|
|
3
|
+
/.*
|
|
4
|
+
|
|
5
|
+
!bin/
|
|
6
|
+
!lib/
|
|
7
|
+
!docs/
|
|
8
|
+
!package.json
|
|
9
|
+
!package-lock.json
|
|
10
|
+
!README.md
|
|
11
|
+
!CONTRIBUTING.md
|
|
12
|
+
!LICENSE
|
|
13
|
+
!CHANGELOG.md
|
|
14
|
+
!example/
|
|
15
|
+
!scripts/
|
|
16
|
+
!tap-snapshots/
|
|
17
|
+
!test/
|
|
18
|
+
!.travis.yml
|
|
19
|
+
!.gitignore
|
|
20
|
+
!.gitattributes
|
|
21
|
+
!coverage-map.js
|
|
22
|
+
!index.js
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# ignore most things, include some others
|
|
2
|
+
/*
|
|
3
|
+
/.*
|
|
4
|
+
|
|
5
|
+
!bin/
|
|
6
|
+
!lib/
|
|
7
|
+
!docs/
|
|
8
|
+
!package.json
|
|
9
|
+
!package-lock.json
|
|
10
|
+
!README.md
|
|
11
|
+
!CONTRIBUTING.md
|
|
12
|
+
!LICENSE
|
|
13
|
+
!CHANGELOG.md
|
|
14
|
+
!example/
|
|
15
|
+
!scripts/
|
|
16
|
+
!tap-snapshots/
|
|
17
|
+
!test/
|
|
18
|
+
!.travis.yml
|
|
19
|
+
!.gitignore
|
|
20
|
+
!.gitattributes
|
|
21
|
+
!coverage-map.js
|
|
22
|
+
!index.js
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# ignore most things, include some others
|
|
2
|
+
/*
|
|
3
|
+
/.*
|
|
4
|
+
|
|
5
|
+
!bin/
|
|
6
|
+
!lib/
|
|
7
|
+
!docs/
|
|
8
|
+
!package.json
|
|
9
|
+
!package-lock.json
|
|
10
|
+
!README.md
|
|
11
|
+
!CONTRIBUTING.md
|
|
12
|
+
!LICENSE
|
|
13
|
+
!CHANGELOG.md
|
|
14
|
+
!example/
|
|
15
|
+
!scripts/
|
|
16
|
+
!tap-snapshots/
|
|
17
|
+
!test/
|
|
18
|
+
!.travis.yml
|
|
19
|
+
!.gitignore
|
|
20
|
+
!.gitattributes
|
|
21
|
+
!coverage-map.js
|
|
22
|
+
!index.js
|
package/template/workspace/nx/node_modules/.pnpm/node_modules/npm-normalize-package-bin/.gitignore
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# ignore most things, include some others
|
|
2
|
+
/*
|
|
3
|
+
/.*
|
|
4
|
+
|
|
5
|
+
!bin/
|
|
6
|
+
!lib/
|
|
7
|
+
!docs/
|
|
8
|
+
!package.json
|
|
9
|
+
!package-lock.json
|
|
10
|
+
!README.md
|
|
11
|
+
!CONTRIBUTING.md
|
|
12
|
+
!LICENSE
|
|
13
|
+
!CHANGELOG.md
|
|
14
|
+
!example/
|
|
15
|
+
!scripts/
|
|
16
|
+
!tap-snapshots/
|
|
17
|
+
!test/
|
|
18
|
+
!.github/
|
|
19
|
+
!.travis.yml
|
|
20
|
+
!.gitignore
|
|
21
|
+
!.gitattributes
|
|
22
|
+
!coverage-map.js
|
|
23
|
+
!map.js
|
|
24
|
+
!index.js
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# ignore most things, include some others
|
|
2
|
+
/*
|
|
3
|
+
/.*
|
|
4
|
+
|
|
5
|
+
!bin/
|
|
6
|
+
!lib/
|
|
7
|
+
!docs/
|
|
8
|
+
!package.json
|
|
9
|
+
!package-lock.json
|
|
10
|
+
!README.md
|
|
11
|
+
!CONTRIBUTING.md
|
|
12
|
+
!LICENSE
|
|
13
|
+
!CHANGELOG.md
|
|
14
|
+
!example/
|
|
15
|
+
!scripts/
|
|
16
|
+
!tap-snapshots/
|
|
17
|
+
!test/
|
|
18
|
+
!.github/
|
|
19
|
+
!.travis.yml
|
|
20
|
+
!.gitignore
|
|
21
|
+
!.gitattributes
|
|
22
|
+
!coverage-map.js
|
|
23
|
+
!map.js
|
|
24
|
+
!index.js
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# ignore most things, include some others
|
|
2
|
+
/*
|
|
3
|
+
/.*
|
|
4
|
+
|
|
5
|
+
!bin/
|
|
6
|
+
!lib/
|
|
7
|
+
!docs/
|
|
8
|
+
!package.json
|
|
9
|
+
!package-lock.json
|
|
10
|
+
!README.md
|
|
11
|
+
!CONTRIBUTING.md
|
|
12
|
+
!LICENSE
|
|
13
|
+
!CHANGELOG.md
|
|
14
|
+
!example/
|
|
15
|
+
!scripts/
|
|
16
|
+
!tap-snapshots/
|
|
17
|
+
!test/
|
|
18
|
+
!.github/
|
|
19
|
+
!.travis.yml
|
|
20
|
+
!.gitignore
|
|
21
|
+
!.gitattributes
|
|
22
|
+
!coverage-map.js
|
|
23
|
+
!map.js
|
|
24
|
+
!index.js
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# ignore most things, include some others
|
|
2
|
+
/*
|
|
3
|
+
/.*
|
|
4
|
+
|
|
5
|
+
!bin/
|
|
6
|
+
!lib/
|
|
7
|
+
!docs/
|
|
8
|
+
!package.json
|
|
9
|
+
!package-lock.json
|
|
10
|
+
!README.md
|
|
11
|
+
!CONTRIBUTING.md
|
|
12
|
+
!LICENSE
|
|
13
|
+
!CHANGELOG.md
|
|
14
|
+
!example/
|
|
15
|
+
!scripts/
|
|
16
|
+
!tap-snapshots/
|
|
17
|
+
!test/
|
|
18
|
+
!.github/
|
|
19
|
+
!.travis.yml
|
|
20
|
+
!.gitignore
|
|
21
|
+
!.gitattributes
|
|
22
|
+
!coverage-map.js
|
|
23
|
+
!map.js
|
|
24
|
+
!index.js
|