This document assumes that you are using Sage 10.
Install Node.js and npm.
Create a package.json file in your project.
Pinecone must be installed from NPM. In order to add Pinecone to your project, you’ll need to run the following command:
```bash
npm install --save @platform-coop-toolkit/pinecone
```
Sage 10 uses Laravel Mix. To use Pinecone, your webpack.mix.js
file should look like this:
```javascript
const mix = require('laravel-mix');
mix.setPublicPath('./dist')
.browserSync('pinecone.test'); // Replace this with your local development URL.
mix.sass('resources/assets/styles/main.scss', 'styles', {
sassOptions: {
includePaths: [path.join(__dirname, 'node_modules')],
},
});
mix.js('resources/assets/scripts/main.js', 'scripts')
.extract();
mix.copy('resources/assets/images', 'dist/images')
.copy('resources/assets/fonts', 'dist/fonts')
.copy('node_modules/@platform-coop-toolkit/pinecone/src/assets/images', 'dist/images')
.copy('node_modules/@platform-coop-toolkit/pinecone/src/assets/fonts', 'dist/fonts');
mix.options({
processCssUrls: false,
});
```
At the top of resources/assets/styles/main.scss
, add the following line:
```scss
@import "~@platform-coop-toolkit/pinecone";
```
Pinecone’s component styles, Sass functions and utility classes will now be available for use within your theme’s Sass.
At the top of resources/assets/scripts/main.js
, add the following line:
```javascript
import Pinecone from '@platform-coop-toolkit/pinecone';
```
Pinecone’s JavaScript classes will now be available for use within your theme’s JavaScript.