@temir.ra/create-ts-lib 0.2.6 → 0.2.7-pre.1
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.md +4 -0
- package/buildinfo.txt +1 -1
- package/package.json +1 -1
- package/template/scripts/build-lib-bundle.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Version 0
|
|
2
2
|
|
|
3
|
+
## 0.2.7-pre.1
|
|
4
|
+
|
|
5
|
+
1. Changed `filter` property in `cdnRewritePlugin` in `scripts/build-lib-bundle.ts` to take import identifiers into account that do not have file extensions.
|
|
6
|
+
|
|
3
7
|
## 0.2.6
|
|
4
8
|
|
|
5
9
|
1. Minor ToC and typo fixes in both README.md files (root and template).
|
package/buildinfo.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.7-pre.1+1fa806e
|
package/package.json
CHANGED
|
@@ -99,7 +99,7 @@ const cdnRewritePlugin = {
|
|
|
99
99
|
console.log(`[cdn-rewrite] '${importSpecifier}' → '${url}'`);
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
build.onResolve({ filter:
|
|
102
|
+
build.onResolve({ filter: /\*/ }, (args: any) => {
|
|
103
103
|
const url = resolved.get(args.path);
|
|
104
104
|
if (url) return { path: url, external: true };
|
|
105
105
|
});
|