Skip to content

Commit

Permalink
Merge branch 'master' into #736-block-some-tools-if-they-are-applied-…
Browse files Browse the repository at this point in the history
…to-FG
  • Loading branch information
Kirill Kapytov authored and Kirill Kapytov committed Oct 21, 2021
2 parents b0f856e + 7c29185 commit 6a16b69
Show file tree
Hide file tree
Showing 11 changed files with 924 additions and 53 deletions.
26 changes: 8 additions & 18 deletions packages/ketcher-core/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import ttypescript from 'ttypescript'
import peerDepsExternal from 'rollup-plugin-peer-deps-external'
import babel from '@rollup/plugin-babel'
import replace from '@rollup/plugin-replace'
import resolve from '@rollup/plugin-node-resolve'
import cleanup from 'rollup-plugin-cleanup'
import commonjs from '@rollup/plugin-commonjs'
import json from '@rollup/plugin-json'
import del from 'rollup-plugin-delete'
import typescript from 'rollup-plugin-typescript2'
import cleanup from 'rollup-plugin-cleanup'
import strip from '@rollup/plugin-strip'
import json from '@rollup/plugin-json'
import peerDepsExternal from 'rollup-plugin-peer-deps-external'
import pkg from './package.json'
import replace from '@rollup/plugin-replace'
import resolve from '@rollup/plugin-node-resolve'
import strip from '@rollup/plugin-strip'
import ttypescript from 'ttypescript'
import typescript from 'rollup-plugin-typescript2'

const mode = {
PRODUCTION: 'production',
Expand All @@ -33,16 +33,6 @@ const config = {
format: 'es'
}
],
external: [
'url',
'remark-parse',
'unified',
'asap',
'object-assign',
'unist-util-visit',
'unist-util-visit-parents',
'xtend'
],
plugins: [
del({
targets: 'dist/*',
Expand Down
Loading

0 comments on commit 6a16b69

Please sign in to comment.