Source

সরঞ্জাম তৈরি করুন

আমাদের ডকুমেন্টেশন তৈরি করতে, সোর্স কোড কম্পাইল করতে, পরীক্ষা চালাতে এবং আরও অনেক কিছু করতে বুটস্ট্র্যাপের অন্তর্ভুক্ত npm স্ক্রিপ্টগুলি কীভাবে ব্যবহার করবেন তা শিখুন।

টুলিং সেটআপ

বুটস্ট্র্যাপ তার বিল্ড সিস্টেমের জন্য NPM স্ক্রিপ্ট ব্যবহার করে। আমাদের package.json- এ ফ্রেমওয়ার্কের সাথে কাজ করার সুবিধাজনক পদ্ধতি রয়েছে, যার মধ্যে রয়েছে কোড কম্পাইল করা, পরীক্ষা চালানো এবং আরও অনেক কিছু।

আমাদের বিল্ড সিস্টেম ব্যবহার করতে এবং স্থানীয়ভাবে আমাদের ডকুমেন্টেশন চালাতে, আপনার বুটস্ট্র্যাপের সোর্স ফাইল এবং নোডের একটি অনুলিপি প্রয়োজন। এই পদক্ষেপগুলি অনুসরণ করুন এবং আপনার রক করার জন্য প্রস্তুত হওয়া উচিত:

  1. Node.js ডাউনলোড এবং ইনস্টল করুন , যা আমরা আমাদের নির্ভরতা পরিচালনা করতে ব্যবহার করি।
  2. /bootstrapরুট ডিরেক্টরিতে নেভিগেট করুন এবং package.json-npm install এ তালিকাভুক্ত আমাদের স্থানীয় নির্ভরতা ইনস্টল করতে চালান ।
  3. রুবি ইনস্টল করুন, এর সাথে বান্ডলারgem install bundler ইনস্টল করুন এবং অবশেষে চালান bundle install। এটি সমস্ত রুবি নির্ভরতা ইনস্টল করবে, যেমন জেকিল এবং প্লাগইন।

সম্পন্ন হলে, আপনি কমান্ড লাইন থেকে প্রদত্ত বিভিন্ন কমান্ড চালাতে সক্ষম হবেন।

NPM স্ক্রিপ্ট ব্যবহার করে

Our package.json includes the following commands and tasks:

Task Description
npm run dist npm run dist creates the /dist directory with compiled files. Uses Sass, Autoprefixer, and UglifyJS.
npm test Same as npm run dist plus it runs tests locally
npm run docs Builds and lints CSS and JavaScript for docs. You can then run the documentation locally via npm run docs-serve.

Run npm run to see all the npm scripts.

Autoprefixer

Bootstrap uses Autoprefixer (included in our build process) to automatically add vendor prefixes to some CSS properties at build time. Doing so saves us time and code by allowing us to write key parts of our CSS a single time while eliminating the need for vendor mixins like those found in v3.

We maintain the list of browsers supported through Autoprefixer in a separate file within our GitHub repository. See /package.json for details.

Local documentation

Running our documentation locally requires the use of Jekyll, a decently flexible static site generator that provides us: basic includes, Markdown-based files, templates, and more. Here’s how to get it started:

  1. Run through the tooling setup above to install Jekyll (the site builder) and other Ruby dependencies with bundle install.
  2. From the root /bootstrap directory, run npm run docs-serve in the command line.
  3. Open http://localhost:9001 in your browser, and voilà.

Learn more about using Jekyll by reading its documentation.

Troubleshooting

আপনি যদি নির্ভরতা ইনস্টল করার সময় সমস্যার সম্মুখীন হন, তাহলে পূর্ববর্তী সমস্ত নির্ভরতা সংস্করণ (গ্লোবাল এবং স্থানীয়) আনইনস্টল করুন। তারপর, পুনরায় চালান npm install