create-packer 1.26.0 → 1.26.2
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/domain/app/app.model.ts +2 -2
- package/template/web-app/react/package.json +1 -1
- package/template/web-app/react-webpack/domain/app/app.model.ts +2 -2
- package/template/web-app/react-webpack/package.json +1 -1
- package/template/web-extension/package.json +1 -1
- package/template/web-extension/shared/service/tools.ts +8 -2
- 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
|
@@ -21,8 +21,14 @@ function createServiceHooks() {
|
|
|
21
21
|
async req => {
|
|
22
22
|
// eslint-disable-next-line prefer-const
|
|
23
23
|
let [url, searchParams] = req.url.split('?')
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
let reqBody = void 0
|
|
25
|
+
if (!includes(['GET', 'HEAD'], req.method)) {
|
|
26
|
+
try {
|
|
27
|
+
reqBody = await req.json()
|
|
28
|
+
} catch {
|
|
29
|
+
/* empty */
|
|
30
|
+
}
|
|
31
|
+
}
|
|
26
32
|
const parsedSearchParams = parse(searchParams)
|
|
27
33
|
const reqConfig = {
|
|
28
34
|
searchParams: parsedSearchParams,
|
|
@@ -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
|