mirror of
https://github.com/redmine/redmine.git
synced 2026-01-30 03:09:58 +01:00
* Add TablesortScrubber to both CommonMark and Textile Formatters. It will now be determined on the server-side whether to use tablesort. * Migrate tablesort to Stimulus controller. * Update tablesort to v5.7.0. * Switch tablesort to ESM. Patch by Takashi Kato (user:tohosaku). git-svn-id: https://svn.redmine.org/redmine/trunk@24357 e93f8b46-1217-0410-a6f0-8f06a7374b81
12 lines
386 B
Ruby
12 lines
386 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Pin npm packages by running ./bin/importmap
|
|
|
|
pin "application"
|
|
pin "@hotwired/stimulus", to: "stimulus.min.js"
|
|
pin "@hotwired/stimulus-loading", to: "stimulus-loading.js"
|
|
pin "turndown" # @7.2.0
|
|
pin_all_from "app/javascript/controllers", under: "controllers"
|
|
pin "tablesort", to: "tablesort.min.js"
|
|
pin "tablesort.number", to: "tablesort.number.min.js"
|