Coder Social home page Coder Social logo

Comments (4)

kiichi avatar kiichi commented on July 27, 2024

probably, cache option in rollup will help? I just played with src/compile.js and src/index.js.

https://rollupjs.org/guide/en/#advanced-functionality

I hope this help:

in src/compile.js

let cache;

then inside compile function, just before return, returned the rollup object without write statement

cache = bundle.cache;
return bundle;//.write(options.output)

Then, in src/index.js where main() resolve all Promise objects, I tried to verbose all compiled code from the cache like below, and it's kind works. I just not sure how to export & register with proper tag name.

return await Promise.all(options._.map(input => generateOutput(options, input))).then(bundle=>{
			const allCode = bundle[0].map(bnd=>{
				const obj = bnd.cache.modules[0];
				const code = obj.code.substr(0, obj.code.length - 1).replace('export default ', '');
				const name = 'not-found';//obj.meta.tagName; // not sure how to get this
				return "riot.register('" + name + "'," + code + ");";
			}).join('\n\n');
			console.log(allCode);
		});

I tested like this

node index.js ~/my-project-dir/tags -o dist/one.js --extension html

of course dist/one.js doesn't have compiled code anymore, instead, the console shows all combined code

from cli.

GianlucaGuarini avatar GianlucaGuarini commented on July 27, 2024

The new Riot.js CLI doesn't concat the components in one single javascript file since it doesn't make sense with the new API. You can either compile your whole application via cli or compile all your single tags into single javascript output files check here

from cli.

infuzz avatar infuzz commented on July 27, 2024

Yes I successfully compile each single file into many single javascript files. But I'm not sure to understand why it doen't make sense to have only one file. Sorry for that (maybe a stupid question). It's not fun to include dozen of pre compiled script with <script> tag.
Anyway, until I set up all to compile as a whole app with cli, (as you suggested) I use, as a temporary solution, the funny @kiichi compile_me tag to get only one js file that build a single file with compiled tag && auto register fct.

from cli.

GianlucaGuarini avatar GianlucaGuarini commented on July 27, 2024

closing this issue because it's not actually an issue

from cli.

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.