-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6571 from BacLuc/frontend-switch-to-module
frontend/pdf/print: set type to module in package.json
- Loading branch information
Showing
22 changed files
with
67 additions
and
72 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
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
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 |
---|---|---|
@@ -1,8 +1,7 @@ | ||
module.exports = { | ||
presets: ['@vue/app'], | ||
env: { | ||
test: { | ||
plugins: ['require-context-hook'], | ||
}, | ||
// noinspection JSUnusedGlobalSymbols | ||
export const presets = ['@vue/app'] | ||
export const env = { | ||
test: { | ||
plugins: ['require-context-hook'], | ||
}, | ||
} |
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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
const path = require('path') | ||
const fs = require('fs') | ||
const utils = require('eslint-plugin-vue/lib/utils/index.js') | ||
const matchingTranslationKeys = require('../src/common/eslint-local-rules/matchingTranslationKeys.js') | ||
import utils from 'eslint-plugin-vue/lib/utils/index.js' | ||
// noinspection ES6UnusedImports | ||
import createMatchingTranslationKeys from '../../common/eslint-local-rules/matchingTranslationKeys.js' | ||
|
||
module.exports = { | ||
'matching-translation-keys': matchingTranslationKeys(path, utils, fs), | ||
} | ||
// noinspection JSUnusedGlobalSymbols | ||
export const matchingTranslationKeys = createMatchingTranslationKeys(utils) |
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
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
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 |
---|---|---|
|
@@ -9,7 +9,8 @@ lerna-debug.log* | |
|
||
node_modules | ||
.DS_Store | ||
dist | ||
/dist/* | ||
!/dist/*.dist | ||
dist-ssr | ||
coverage | ||
*.local | ||
|
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 |
---|---|---|
@@ -1,8 +1,7 @@ | ||
module.exports = { | ||
presets: ['@vue/app'], | ||
env: { | ||
test: { | ||
plugins: ['require-context-hook'], | ||
}, | ||
// noinspection JSUnusedGlobalSymbols | ||
export const presets = ['@vue/app'] | ||
export const env = { | ||
test: { | ||
plugins: ['require-context-hook'], | ||
}, | ||
} |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
const path = require('path') | ||
const fs = require('fs') | ||
const utils = require('eslint-plugin-vue/lib/utils/index.js') | ||
const matchingTranslationKeys = require('../common/eslint-local-rules/matchingTranslationKeys.js') | ||
import utils from 'eslint-plugin-vue/lib/utils/index.js' | ||
// noinspection ES6UnusedImports | ||
import createMatchingTranslationKeys from '../../common/eslint-local-rules/matchingTranslationKeys.js' | ||
|
||
module.exports = { | ||
'matching-translation-keys': matchingTranslationKeys(path, utils, fs), | ||
} | ||
// noinspection JSUnusedGlobalSymbols | ||
export const matchingTranslationKeys = createMatchingTranslationKeys(utils) |
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
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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
const path = require('path') | ||
const fs = require('fs') | ||
const utils = require('eslint-plugin-vue/lib/utils/index.js') | ||
const matchingTranslationKeys = require('../../common/eslint-local-rules/matchingTranslationKeys.js') | ||
import utils from 'eslint-plugin-vue/lib/utils/index.js' | ||
// noinspection ES6UnusedImports | ||
import createMatchingTranslationKeys from '../../common/eslint-local-rules/matchingTranslationKeys.js' | ||
|
||
module.exports = { | ||
'matching-translation-keys': matchingTranslationKeys(path, utils, fs), | ||
} | ||
// noinspection JSUnusedGlobalSymbols | ||
export const matchingTranslationKeys = createMatchingTranslationKeys(utils) |
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