forked from babangsund/cypress-keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb1397b
commit d6bf2df
Showing
4 changed files
with
201 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import { terser } from 'rollup-plugin-terser'; | ||
import commonjs from 'rollup-plugin-commonjs'; | ||
import typescript from 'rollup-plugin-typescript'; | ||
|
||
import pkg from './package.json'; | ||
|
||
const input = 'src/index.ts'; | ||
const globals = { cypress: 'Cypress' }; | ||
const external = Object.keys(globals); | ||
const license = { | ||
output: { | ||
preamble: [ | ||
'/**', | ||
' * cypress-keycloak v' + process.env.npm_package_version, | ||
' *', | ||
' * Copyright (c) 2019 babangsund', | ||
' *', | ||
' * This source code is licensed under the MIT license found in the', | ||
' * LICENSE file in the root directory of this source tree.', | ||
' */', | ||
].join('\n'), | ||
}, | ||
}; | ||
|
||
export default { | ||
input, | ||
external, | ||
plugins: [ | ||
commonjs(), | ||
typescript(), | ||
process.env.NODE_ENV === 'production' && terser(license), | ||
], | ||
output: [ | ||
{ | ||
globals, | ||
format: 'esm', | ||
file: pkg.module, | ||
}, | ||
{ | ||
globals, | ||
format: 'cjs', | ||
file: pkg.main, | ||
}, | ||
], | ||
}; |
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,10 +1,10 @@ | ||
{ | ||
"compilerOptions": { | ||
"strict": true, | ||
"baseUrl": "../node_modules", | ||
"target": "es5", | ||
"types": ["cypress"], | ||
"lib": ["es5", "dom"], | ||
"types": ["cypress"] | ||
"baseUrl": "../node_modules" | ||
}, | ||
"include": ["src", "**/*.ts"] | ||
} |
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