ソースを参照

don't use ES6 syntax in a dist package

using ES6 syntax will cause trouble unless you transpile before use (which is something you should not be required to do in a dist package)
bubble
Johann Wagner 7年前
committed by GitHub
コミット
ab960e8c45
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      swagger-ui-dist-package/absolute-path.js

+ 1
- 1
swagger-ui-dist-package/absolute-path.js ファイルの表示

@@ -3,7 +3,7 @@
* @return {string} When run in NodeJS env, returns the absolute path to the current directory
* When run outside of NodeJS, will return an error message
*/
const getAbsoluteFSPath = () => {
const getAbsoluteFSPath = function () {
// detect whether we are running in a browser or nodejs
if (typeof module !== "undefined" && module.exports) {
return require("path").resolve(__dirname)


読み込み中…
キャンセル
保存