-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): Update importmap and include deps downloaded to vendor/j…
…avascript so that cdn issues don't break site (#880)
- Loading branch information
Showing
11 changed files
with
10,080 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,15 +7,15 @@ | |
pin '@hotwired/stimulus', to: 'stimulus.min.js', preload: true | ||
pin '@hotwired/stimulus-loading', to: 'stimulus-loading.js', preload: true | ||
pin 'flowbite', to: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/flowbite.turbo.min.js' | ||
pin '@popperjs/core', to: 'https://ga.jspm.io/npm:@popperjs/[email protected]/dist/esm/index.js' | ||
pin '@sindresorhus/slugify', to: 'https://ga.jspm.io/npm:@sindresorhus/[email protected]/index.js' | ||
pin '@sindresorhus/transliterate', to: 'https://ga.jspm.io/npm:@sindresorhus/[email protected]/index.js' | ||
pin 'escape-string-regexp', to: 'https://ga.jspm.io/npm:[email protected]/index.js' | ||
pin 'lodash', to: 'https://ga.jspm.io/npm:[email protected]/lodash.js' | ||
pin '@rails/activestorage', to: 'https://ga.jspm.io/npm:@rails/[email protected]/app/assets/javascripts/activestorage.esm.js' | ||
pin '@popperjs/core', to: '@popperjs--core.js' # @2.11.7 | ||
pin '@sindresorhus/slugify', to: '@sindresorhus--slugify.js' # @2.2.1 | ||
pin '@sindresorhus/transliterate', to: '@sindresorhus--transliterate.js' # @1.6.0 | ||
pin 'escape-string-regexp' # @5.0.0 | ||
pin '@rails/activestorage', to: '@rails--activestorage.js' # @7.2.201 | ||
pin_all_from 'app/javascript/controllers', under: 'controllers' | ||
pin 'xlsx', to: 'https://ga.jspm.io/npm:xlsx@0.18.5/xlsx.mjs' | ||
pin 'validator', to: 'https://ga.jspm.io/npm:validator@13.11.0/index.js' | ||
pin 'xlsx' # @0.18.5 | ||
pin 'validator' # @13.12.0 | ||
pin_all_from 'app/javascript/utilities', under: 'utilities' | ||
pin 'sortablejs', to: 'https://ga.jspm.io/npm:sortablejs@1.15.2/modular/sortable.esm.js' | ||
pin 'sortablejs' # @1.15.2 | ||
pin 'local-time' # @3.0.2 | ||
pin 'lodash' # @4.17.21 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// [email protected] downloaded from https://ga.jspm.io/npm:[email protected]/index.js | ||
|
||
function escapeStringRegexp(e){if("string"!==typeof e)throw new TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}export default escapeStringRegexp; | ||
|
Oops, something went wrong.