Skip to content

Commit 83c86fc

Browse files
authored
Merge pull request #1 from modernweb-dev/init
Move package from `modernweb-dev/web` monorepo
2 parents 04276d3 + f10886e commit 83c86fc

33 files changed

+5964
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node_modules
2+
dist

CHANGELOG.md

+135
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
# @web/rollup-plugin-polyfills-loader
2+
3+
## 2.1.1
4+
5+
### Patch Changes
6+
7+
- 1c0088de: Update Rollup to version 4.
8+
9+
## 2.1.0
10+
11+
### Minor Changes
12+
13+
- c185cbaa: Set minimum node version to 18
14+
15+
### Patch Changes
16+
17+
- Updated dependencies [c185cbaa]
18+
- @web/polyfills-loader@2.2.0
19+
20+
## 2.0.1
21+
22+
### Patch Changes
23+
24+
- f6ba53f0: Export types with package
25+
26+
## 2.0.0
27+
28+
### Major Changes
29+
30+
- febd9d9d: Set node 16 as the minimum version.
31+
- 72c63bc5: Require [email protected] and update all Rollup related dependencies to latest.
32+
33+
### Patch Changes
34+
35+
- Updated dependencies [febd9d9d]
36+
- @web/polyfills-loader@2.0.0
37+
38+
## 1.3.1
39+
40+
### Patch Changes
41+
42+
- e9508a24: fix: support node 17 & 18 by using md5 hashing
43+
- Updated dependencies [e9508a24]
44+
- @web/polyfills-loader@1.3.4
45+
46+
## 1.3.0
47+
48+
### Minor Changes
49+
50+
- 03f1481c: Add option to externalize polyfills loader script
51+
52+
### Patch Changes
53+
54+
- Updated dependencies [03f1481c]
55+
- @web/polyfills-loader@1.3.0
56+
57+
## 1.2.0
58+
59+
### Minor Changes
60+
61+
- ea4ccb03: use modulepreload-shim for es-module-shims
62+
63+
## 1.1.1
64+
65+
### Patch Changes
66+
67+
- e40335a4: Update main entrypoint to point to dist
68+
69+
## 1.1.0
70+
71+
### Minor Changes
72+
73+
- 205bf88f: Retain script attributes
74+
75+
### Patch Changes
76+
77+
- Updated dependencies [0892bddd]
78+
- @web/polyfills-loader@1.1.0
79+
80+
## 1.0.7
81+
82+
### Patch Changes
83+
84+
- f2733bb5: allow changing filetype for only modern output
85+
86+
## 1.0.6
87+
88+
### Patch Changes
89+
90+
- 338f22b6: Inject the polyfills loader also when only using regeneratorRuntime with 'always' value.
91+
92+
## 1.0.5
93+
94+
### Patch Changes
95+
96+
- 2c616b84: fix pathToRoot
97+
98+
## 1.0.4
99+
100+
### Patch Changes
101+
102+
- ac379b48: fix(rollup-plugin-polyfills-loader): fix relative paths to polyfills with `flattenOutput: false`
103+
- Updated dependencies [ac379b48]
104+
- @web/polyfills-loader@1.0.2
105+
106+
## 1.0.3
107+
108+
### Patch Changes
109+
110+
- 2006211: update minimum systemjs version
111+
- Updated dependencies [2006211]
112+
- @web/polyfills-loader@1.0.1
113+
114+
## 1.0.2
115+
116+
### Patch Changes
117+
118+
- 9680970: Add missing files to the npm artifact
119+
120+
## 1.0.1
121+
122+
### Patch Changes
123+
124+
- da360bc: correctly preload non-module entrypoints
125+
126+
## 1.0.0
127+
128+
### Major Changes
129+
130+
- 8a48245: Initial implementation
131+
132+
### Patch Changes
133+
134+
- Updated dependencies [369308b]
135+
- @web/polyfills-loader@1.0.0

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
# package-template
2-
A template for Modern Web packages
1+
# Rollup Plugin Polyfills Loader
2+
3+
Rollup plugin for injecting a [Polyfills Loader](https://modern-web.dev/docs/building/polyfills-loader/) into a HTML file generated by `@web/rollup-plugin-html`
4+
5+
See [our website](https://modern-web.dev/docs/building/rollup-plugin-polyfills-loader/) for full documentation.

index.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// this file is autogenerated with the generate-mjs-dts-entrypoints script
2+
export * from './dist/index.js';

index.mjs

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// this file is autogenerated with the generate-mjs-dts-entrypoints script
2+
import cjsEntrypoint from './dist/index.js';
3+
4+
const { polyfillsLoader } = cjsEntrypoint;
5+
6+
export { polyfillsLoader };

0 commit comments

Comments
 (0)