Skip to content

Commit

Permalink
new release 0.0.1_1: fix for dependency error
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Mar 29, 2018
1 parent d3a7860 commit bf48859
Show file tree
Hide file tree
Showing 8 changed files with 58 additions and 38 deletions.
2 changes: 1 addition & 1 deletion atmosphere-packages/webpack/.versions
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ardatan:[email protected].1
ardatan:[email protected].1_1
[email protected]
[email protected]
[email protected]
2 changes: 1 addition & 1 deletion atmosphere-packages/webpack/package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'ardatan:webpack',
version: '0.0.1',
version: '0.0.1_1',
summary: 'Webpack Integration for Meteor',
git: 'https://github.com/ardatan/meteor-webpack',
documentation: '../../README.md'
Expand Down
3 changes: 2 additions & 1 deletion atmosphere-packages/webpack/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ Plugin.registerCompiler({

const path = Npm.require('path');
const requireFromString = Npm.require('require-from-string');
let webpack;
try{
const webpack = Npm.require('webpack');
webpack = Npm.require('webpack');
}catch(e){
console.log('You have to install webpack to use this package!')
}
Expand Down
19 changes: 8 additions & 11 deletions examples/react/.meteor/versions

0 comments on commit bf48859

Please sign in to comment.