GithubHelp home page GithubHelp logo

Comments (2)

jlengstorf avatar jlengstorf commented on May 24, 2024 3

Hey, folks — questions like these are much better directed to the official Rollup issues (https://github.com/rollup/rollup). The issues you're hitting aren't related to the tutorial, so they don't really make sense here.

The short answer, though, is that the paths need to be relative.

So instead of:

import myScripts from 'js/myscripts';

Use:

import myScripts from './js/myscripts';

Good luck!

from learn-rollup.

CodingMeUp avatar CodingMeUp commented on May 24, 2024 1

And i meet same problem !!

  • Config.js
import uglify from 'rollup-plugin-uglify'
import resolve from 'rollup-plugin-node-resolve'
import babel from 'rollup-plugin-babel';
import commonjs from 'rollup-plugin-commonjs';
import postcss from 'rollup-plugin-postcss';

 // PostCSS plugins
 import simplevars from 'postcss-simple-vars';
 import nested from 'postcss-nested';
 import cssnext from 'postcss-cssnext';
 import cssnano from 'cssnano';

export default {
    entry: 'src/main.js',
    format: 'umd',
    dest: 'dist/bundle.min.js',
    sourceMap: true,
    plugins: [
	resolve({ jsnext: true, main: true }),
	commonjs(),
        babel({
          exclude: 'node_modules/**'
        }),
	uglify(),
   	postcss({
      	 plugins: [
       	  simplevars(),
      	   nested(),
      	   cssnext({ warnForDuplicates: false, }),
     	   cssnano(),
     	  ],
    	   extensions: [ '.css' ],
   	})
    ]
}

main.js

import   'js/jsondiffpatch.min.js'
import  'js/jsondiffpatch-formatters.min.js'
import 'css/annotated.css'
import 'css/html.css'

class Customer {
    constructor(name) {
        this.name = name;
    }
    sayHi() {
        console.log(`The name is: ${this.name}`)
        console.info(`foo's Uppercase: ${_.upperCase('foo')}`)
    }
}

let kevin = new Customer('kevin');
kevin.sayHi();`

CMD get errors !

⚠️ 'js/jsondiffpatch.min.js' is imported by src\main.js, but could not be reso
lved – treating it as an external dependency
https://github.com/rollup/rollup/wiki/Troubleshooting#treating-module-as-externa
l-dependency

⚠️ 'js/jsondiffpatch-formatters.min.js' is imported by src\main.js, but could
not be resolved – treating it as an external dependency
https://github.com/rollup/rollup/wiki/Troubleshooting#treating-module-as-externa
l-dependency

⚠️ 'css/annotated.css' is imported by src\main.js, but could not be resolved
– treating it as an external dependency
https://github.com/rollup/rollup/wiki/Troubleshooting#treating-module-as-externa
l-dependency

⚠️ 'css/html.css' is imported by src\main.js, but could not be resolved – tre
ating it as an external dependency
https://github.com/rollup/rollup/wiki/Troubleshooting#treating-module-as-externa
l-dependency

from learn-rollup.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.