Skip to content

Commit b567ddb

Browse files
chore(merge main): patched commit -> 5ecef8a
1 parent c2f9af7 commit b567ddb

30 files changed

+938
-114
lines changed

.bundlewatch.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
},
3131
{
3232
"path": "./dist/css/boosted.min.css",
33-
"maxSize": "25.2 kB"
33+
"maxSize": "25.3 kB"
3434
},
3535
{
3636
"path": "./dist/js/boosted.bundle.js",

.cspell.json

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
{
2+
"version": "0.2",
3+
"words": [
4+
"affordance",
5+
"allowfullscreen",
6+
"autohide",
7+
"autohiding",
8+
"autoplay",
9+
"autoplaying",
10+
"autoplays",
11+
"blazingly",
12+
"Blockquotes",
13+
"Bootstrappers",
14+
"borderless",
15+
"browserslist",
16+
"browserslistrc",
17+
"btncheck",
18+
"btnradio",
19+
"callout",
20+
"callouts",
21+
"clearfix",
22+
"clic",
23+
"Codesniffer",
24+
"colorspace",
25+
"combinator",
26+
"Contentful",
27+
"Cpath",
28+
"Crossfade",
29+
"cssgrid",
30+
"csps",
31+
"Csvg",
32+
"Datalists",
33+
"Deduping",
34+
"Deque",
35+
"discoverability",
36+
"docsearch",
37+
"docsref",
38+
"dropend",
39+
"dropleft",
40+
"dropright",
41+
"dropstart",
42+
"dropup",
43+
"errorf",
44+
"evenodd",
45+
"favicon",
46+
"favicons",
47+
"fieldsets",
48+
"flexbox",
49+
"fullscreen",
50+
"fusv",
51+
"getbootstrap",
52+
"globby",
53+
"Grayscale",
54+
"Helv",
55+
"Hoverable",
56+
"hreflang",
57+
"hstack",
58+
"jsdelivr",
59+
"Jumpstart",
60+
"keyframes",
61+
"libera",
62+
"Libsass",
63+
"lightboxes",
64+
"linkedin",
65+
"Lowercased",
66+
"markdownify",
67+
"mediaqueries",
68+
"minifiers",
69+
"monospace",
70+
"mouseleave",
71+
"navbars",
72+
"navs",
73+
"Neue",
74+
"noindex",
75+
"Noto",
76+
"offcanvas",
77+
"offcanvases",
78+
"opensource",
79+
"pinterest",
80+
"popperjs",
81+
"prebuild",
82+
"precompiled",
83+
"preconnect",
84+
"preconnecting",
85+
"prefersreducedmotion",
86+
"prefetching",
87+
"preload",
88+
"prepended",
89+
"printf",
90+
"rects",
91+
"relref",
92+
"rgba",
93+
"roboto",
94+
"RTLCSS",
95+
"ruleset",
96+
"screenreaders",
97+
"scrollbars",
98+
"scrollspy",
99+
"Segoe",
100+
"sirv",
101+
"srcset",
102+
"stickied",
103+
"Stylelint",
104+
"subnav",
105+
"svgo",
106+
"svgs",
107+
"tabbable",
108+
"tarteaucitron",
109+
"textareas",
110+
"toggleable",
111+
"topbar",
112+
"touchend",
113+
"track_cible",
114+
"twbs",
115+
"unitless",
116+
"unminified",
117+
"Unported",
118+
"unstylable",
119+
"unstyled",
120+
"Uppercased",
121+
"urlize",
122+
"vbtn",
123+
"viewports",
124+
"vstack",
125+
"walkthroughs",
126+
"whatsapp",
127+
"WCAG",
128+
"webfont",
129+
"WICG's",
130+
"Woohoo",
131+
"zindex",
132+
"بالعالم",
133+
"مرحبا"
134+
],
135+
"language": "en,en-US",
136+
"ignorePaths": [
137+
".cspell.json",
138+
".min."
139+
]
140+
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ boosted/
116116
└── boosted.min.js.map
117117
```
118118

119-
We provide compiled CSS and JS (`boosted.*`), as well as compiled and minified CSS and JS (`boosted.min.*`). [source maps](https://developers.google.com/web/tools/chrome-devtools/javascript/source-maps) (`boosted.*.map`) are available for use with certain browsers' developer tools. Bundled JS files (`boosted.bundle.js` and minified `boosted.bundle.min.js`) include [Popper](https://popper.js.org/).
119+
We provide compiled CSS and JS (`boosted.*`), as well as compiled and minified CSS and JS (`boosted.min.*`). [Source maps](https://developers.google.com/web/tools/chrome-devtools/javascript/source-maps) (`boosted.*.map`) are available for use with certain browsers' developer tools. Bundled JS files (`boosted.bundle.js` and minified `boosted.bundle.min.js`) include [Popper](https://popper.js.org/).
120120

121121

122122
## Bugs and feature requests

build/build-plugins.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ const build = async plugin => {
163163
name: plugin,
164164
sourcemap: true,
165165
globals,
166+
generatedCode: 'es2015',
166167
file: path.resolve(__dirname, `${pluginPath}/${pluginFilename}`)
167168
})
168169

build/rollup.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ const rollupConfig = {
4343
banner,
4444
file: path.resolve(__dirname, `../dist/js/${fileDest}.js`),
4545
format: ESM ? 'esm' : 'umd',
46-
globals
46+
globals,
47+
generatedCode: 'es2015'
4748
},
4849
external,
4950
plugins

config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ params:
8989
js_hash: "sha384-KmiznHRZsRXbvlEFfKSf9EGYhJa+94X/K4kgdlpIEVIz7kY8ASB3/vwhBKLKECeS"
9090
js_bundle: "https://cdn.jsdelivr.net/npm/boosted@5.1.1/dist/js/boosted.bundle.min.js"
9191
js_bundle_hash: "sha384-Njq6Cdj8rs3ZqRkj0DCyKcP+OuU9FD99AObDbfh0I0nMTg9jAwgShNdhg/Q4Wq0K"
92-
popper: "https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.1/dist/umd/popper.min.js"
93-
popper_hash: "sha384-W8fXfP3gkOKtndU4JGtKDvXbO53Wy8SZCQHczT5FMiiqmQfUpWbYdTil/SxwZgAN"
92+
popper: "https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"
93+
popper_hash: "sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB"
9494
focus_visible: "https://cdn.jsdelivr.net/npm/focus-visible@5.2.0/dist/focus-visible.min.js"
9595
focus_visible_hash: "sha384-xRa5B8rCDfdg0npZcxAh+RXswrbFk3g6dlHVeABeluN8EIwdyljz/LqJgc2R3KNA"

js/tests/karma.conf.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ const conf = {
9898
output: {
9999
format: 'iife',
100100
name: 'bootstrapTest',
101-
sourcemap: 'inline'
101+
sourcemap: 'inline',
102+
generatedCode: 'es2015'
102103
}
103104
}
104105
}

0 commit comments

Comments
 (0)