-
-
Notifications
You must be signed in to change notification settings - Fork 183
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 #1011 from flexn-io/feat/update_plugins
updated all plugins
- Loading branch information
Showing
102 changed files
with
18,895 additions
and
7,966 deletions.
There are no files selected for viewing
410 changes: 410 additions & 0 deletions
410
...es/rnv/pluginTemplates/@bam.tech/react-native-image-resizer/overrides/ios/ImageResizer.mm
Large diffs are not rendered by default.
Oops, something went wrong.
47 changes: 23 additions & 24 deletions
47
packages/rnv/pluginTemplates/@lightningjs/cli/overrides.json
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,27 +1,26 @@ | ||
{ | ||
"overrides": { | ||
"src/actions/serve.js": { | ||
"'./build',": "process.env.LNG_BUILD_FOLDER," | ||
}, | ||
"src/actions/dist.js": { | ||
"distDir = path.join(baseDistDir, type)": "distDir = path.join(baseDistDir, 'project')", | ||
"if (!fs.existsSync(distDir)) {": "if (true) { // need this to always run, since this dir is created by rnv" | ||
}, | ||
"src/helpers/build.js": { | ||
"path.join(process.cwd(), 'src/index.js'),": "path.join(process.cwd(), process.env.LNG_ENTRY_FILE)," | ||
}, | ||
"src/configs/rollup.es6.config.js": { | ||
"resolve({ mainFields: ['module', 'main', 'browser'] }),": "resolve({ mainFields: ['module', 'main', 'browser'], extensions: process.env.RNV_EXTENSIONS.split(',').map(extension => `.${extension}`) })," | ||
}, | ||
"src/configs/esbuild.es6.config.js": { | ||
"/src/index.js`],": "/${process.env.LNG_ENTRY_FILE}`]," | ||
}, | ||
"src/configs/rollup.es5.config.js": { | ||
"resolve({ mainFields: ['module', 'main', 'browser'] }),": "resolve({ mainFields: ['module', 'main', 'browser'], extensions: process.env.RNV_EXTENSIONS.split(',').map(extension => `.${extension}`) })," | ||
}, | ||
"src/configs/esbuild.es5.config.js": { | ||
"/src/index.js`],": "/${process.env.LNG_ENTRY_FILE}`]," | ||
} | ||
"src/actions/serve.js": { | ||
"'./build',": "process.env.LNG_BUILD_FOLDER," | ||
}, | ||
"src/actions/dist.js": { | ||
"distDir = path.join(baseDistDir, type)": "distDir = path.join(baseDistDir, 'project')", | ||
"if (!fs.existsSync(distDir)) {": "if (true) { // need this to always run, since this dir is created by rnv" | ||
}, | ||
"src/helpers/build.js": { | ||
"path.join(process.cwd(), enterFile),": "path.join(process.cwd(), process.env.LNG_ENTRY_FILE)," | ||
}, | ||
"src/configs/rollup.es6.config.js": { | ||
"resolve({ extensions, mainFields: buildHelpers.getResolveConfigForBundlers() }),": "resolve({ extensions: process.env.RNV_EXTENSIONS.split(',').map(extension => `.${extension}`), mainFields: buildHelpers.getResolveConfigForBundlers() })," | ||
}, | ||
"src/configs/esbuild.es6.config.js": { | ||
"/src/index.js`],": "/${process.env.LNG_ENTRY_FILE}`]," | ||
}, | ||
"src/configs/rollup.es5.config.js": { | ||
"resolve({ extensions, mainFields: buildHelpers.getResolveConfigForBundlers() }),": "resolve({ extensions: process.env.RNV_EXTENSIONS.split(',').map(extension => `.${extension}`), mainFields: buildHelpers.getResolveConfigForBundlers() })," | ||
}, | ||
"src/configs/esbuild.es5.config.js": { | ||
"/src/index.js`],": "/${process.env.LNG_ENTRY_FILE}`]," | ||
} | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.