@ms-cloudpack/bundler 0.6.6 → 0.6.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/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "@ms-cloudpack/bundler",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Tue, 01 Nov 2022 08:10:57 GMT",
|
|
6
|
+
"tag": "@ms-cloudpack/bundler_v0.6.7",
|
|
7
|
+
"version": "0.6.7",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "dzearing@microsoft.com",
|
|
12
|
+
"package": "@ms-cloudpack/bundler",
|
|
13
|
+
"commit": "264fdebf12d3c964f2520feef232af76425cdc4c",
|
|
14
|
+
"comment": "Removing esbuild and webpack plugins."
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Wed, 26 Oct 2022 08:13:21 GMT",
|
|
6
21
|
"tag": "@ms-cloudpack/bundler_v0.6.6",
|
|
7
22
|
"version": "0.6.6",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# Change Log - @ms-cloudpack/bundler
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Tue, 01 Nov 2022 08:10:57 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.6.7
|
|
8
|
+
|
|
9
|
+
Tue, 01 Nov 2022 08:10:57 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- Removing esbuild and webpack plugins. (dzearing@microsoft.com)
|
|
14
|
+
|
|
7
15
|
## 0.6.6
|
|
8
16
|
|
|
9
|
-
Wed, 26 Oct 2022 08:13:
|
|
17
|
+
Wed, 26 Oct 2022 08:13:21 GMT
|
|
10
18
|
|
|
11
19
|
### Patches
|
|
12
20
|
|
package/lib/allBundlers.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export const allBundlers = {
|
|
2
|
-
esbuild: async () => (await import('@ms-cloudpack/bundler-plugin-esbuild')).esbuild,
|
|
3
2
|
rollup: async () => (await import('@ms-cloudpack/bundler-plugin-rollup')).rollup,
|
|
4
|
-
webpack: async () => (await import('./abstractions/webpack.js')).webpack,
|
|
5
3
|
ori: async () => (await import('@ms-cloudpack/bundler-plugin-ori')).oriBuild,
|
|
6
4
|
};
|
|
7
5
|
//# sourceMappingURL=allBundlers.js.map
|
package/lib/allBundlers.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"allBundlers.js","sourceRoot":"","sources":["../src/allBundlers.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,WAAW,GAA2C;IACjE,
|
|
1
|
+
{"version":3,"file":"allBundlers.js","sourceRoot":"","sources":["../src/allBundlers.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,WAAW,GAA2C;IACjE,MAAM,EAAE,KAAK,IAAI,EAAE,CAAC,CAAC,MAAM,MAAM,CAAC,qCAAqC,CAAC,CAAC,CAAC,MAAM;IAChF,GAAG,EAAE,KAAK,IAAI,EAAE,CAAC,CAAC,MAAM,MAAM,CAAC,kCAAkC,CAAC,CAAC,CAAC,QAAQ;CAC7E,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ms-cloudpack/bundler",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.7",
|
|
4
4
|
"description": "An abstraction to bundle source code.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@ms-cloudpack/bundler-plugin-esbuild": "^0.4.5",
|
|
17
16
|
"@ms-cloudpack/bundler-plugin-ori": "^0.6.7",
|
|
18
17
|
"@ms-cloudpack/bundler-plugin-rollup": "^0.3.5",
|
|
19
18
|
"@ms-cloudpack/package-utilities": "^1.1.0"
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export const webpack = {
|
|
2
|
-
name: 'webpack',
|
|
3
|
-
// eslint-disable-next-line @typescript-eslint/require-await, @typescript-eslint/no-unused-vars
|
|
4
|
-
bundle: async function bundle(options) {
|
|
5
|
-
const result = {};
|
|
6
|
-
return result;
|
|
7
|
-
},
|
|
8
|
-
};
|
|
9
|
-
//# sourceMappingURL=webpack.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"webpack.js","sourceRoot":"","sources":["../../src/abstractions/webpack.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,OAAO,GAAY;IAC9B,IAAI,EAAE,SAAS;IACf,+FAA+F;IAC/F,MAAM,EAAE,KAAK,UAAU,MAAM,CAAC,OAAuB;QACnD,MAAM,MAAM,GAAkB,EAAE,CAAC;QAEjC,OAAO,MAAM,CAAC;IAChB,CAAC;CACF,CAAC"}
|