Skip to content

Commit

Permalink
Merge pull request finos#1557 from finos/typescript-external-modules
Browse files Browse the repository at this point in the history
Make `/node_modules` external to TS
  • Loading branch information
texodus authored Sep 29, 2021
2 parents 976d768 + 38a66c5 commit 057606b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
30 changes: 15 additions & 15 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -353,21 +353,21 @@ jobs:
- ${{ parameters.pythonCoverageSteps }}
- ${{ parameters.pythonLinuxWheelSteps }}

- job: 'Linux_Python_SDist'
pool:
vmImage: 'ubuntu-18.04'

strategy:
matrix:
Python37:
python.version: '3.7'
python_flag: ''

steps:
- ${{ parameters.initSteps }}
- ${{ parameters.linuxInitSteps }}
- ${{ parameters.pythonBuildSteps }}
- ${{ parameters.pythonSDistSteps }}
# - job: 'Linux_Python_SDist'
# pool:
# vmImage: 'ubuntu-18.04'

# strategy:
# matrix:
# Python37:
# python.version: '3.7'
# python_flag: ''

# steps:
# - ${{ parameters.initSteps }}
# - ${{ parameters.linuxInitSteps }}
# - ${{ parameters.pythonBuildSteps }}
# - ${{ parameters.pythonSDistSteps }}


- job: 'Windows'
Expand Down
2 changes: 1 addition & 1 deletion rust/perspective-viewer/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default () => {
},
...["index", "monaco"].map((name) => ({
input: `src/ts/${name}.ts`,
external: [/pkg/, /node_modules/, /monaco\-editor/],
external: [/pkg/, /node_modules/, /monaco\-editor/, /^[a-zA-Z\@]/],
output: {
sourcemap: true,
dir: "dist/esm/",
Expand Down

0 comments on commit 057606b

Please sign in to comment.