Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump jsonwebtoken and web-ext #47

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,4 @@ dist

# TernJS port file
.tern-port
rome-logs
10 changes: 10 additions & 0 deletions babel.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module.exports = {
presets: [
['@babel/preset-env', { "loose": true }],
'@babel/preset-react',
'module:metro-react-native-babel-preset'
],
plugins: [
["@babel/plugin-transform-private-methods", { "loose": true }]
]
}
7 changes: 0 additions & 7 deletions babel.config.js

This file was deleted.

9 changes: 0 additions & 9 deletions jest.afterEnv.js
Original file line number Diff line number Diff line change
@@ -1,9 +0,0 @@
const Enzyme = require('enzyme')
const Adapter = require('enzyme-adapter-react-16')

Enzyme.configure({ adapter: new Adapter() })

/*
const moment = require('moment-timezone')
moment.tz.setDefault('UTC')
*/
7 changes: 4 additions & 3 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
const { guessRootConfig } = require('lerna-jest')
import { guessRootConfig } from '@optimics/jest'

process.env.NODE_PATH = require('path').join(__dirname, 'packages')
module.exports = guessRootConfig(__dirname)
export default guessRootConfig(import.meta.url)

/*
module.exports.projects[6].transformIgnorePatterns = [
'node_modules/(?!((jest-)?react-native-|rn-/.*))'
]
*/
3 changes: 0 additions & 3 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
{
"packages": [
"packages/*"
],
"version": "2.4.0"
}
Loading