{"id":26831458,"url":"https://github.com/benjaminbwright/assetessa-shopify","last_synced_at":"2026-05-17T11:32:29.433Z","repository":{"id":80251237,"uuid":"244228673","full_name":"benjaminbwright/assetessa-shopify","owner":"benjaminbwright","description":null,"archived":false,"fork":false,"pushed_at":"2020-11-25T06:29:14.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-16T18:35:37.543Z","etag":null,"topics":["asset-pipeline","assets-management","shopify"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/benjaminbwright.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-03-01T21:45:54.000Z","updated_at":"2020-11-25T06:29:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"198c3bce-d0da-4302-be06-f85392093a2c","html_url":"https://github.com/benjaminbwright/assetessa-shopify","commit_stats":null,"previous_names":[],"tags_count":24,"template":false,"template_full_name":null,"purl":"pkg:github/benjaminbwright/assetessa-shopify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benjaminbwright%2Fassetessa-shopify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benjaminbwright%2Fassetessa-shopify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benjaminbwright%2Fassetessa-shopify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benjaminbwright%2Fassetessa-shopify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/benjaminbwright","download_url":"https://codeload.github.com/benjaminbwright/assetessa-shopify/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benjaminbwright%2Fassetessa-shopify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33136718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asset-pipeline","assets-management","shopify"],"created_at":"2025-03-30T14:32:31.565Z","updated_at":"2026-05-17T11:32:29.413Z","avatar_url":"https://github.com/benjaminbwright.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Assetessa Shopify\n\nA simple webpack asset pipeline for Shopify themes.\n\n## Features\n\n- Compiles and minifies js files\n- Compiles and minifies css and sass\n- Live reloads the page on updates\n- ES6 import syntax\n\n## Usage\n\n### File Structure\n\nAll of your shopify theme files must be placed inside of a `src` directory. Here is the minimum folder structur you will need:\n\n```\nroot\n|-- src\n    |-- assets\n        |-- images\n            |-- image.png\n        |-- application.js\n        |__ application.scss\n    |-- config\n    |-- layout\n    |-- locales\n    |-- sections\n    |-- snippets\n    |-- templates\n    |-- config.yml\n|-- package.json\n```\n\n### Installation\n\n```\nnpm install -D assetessa-shopify\n```\n\n### Setup\n\nRun `npx assetessa-shopify init` which will create js files for templates and sections inside of the `src/assets/js/` directory. All js files will be output in the `dist/assetst/` directory based based on their folder name:\n\n```\nsrc/assets/js/templates/product.js\n```\n\nwill be output as:\n\n```\nsrc/assets/template-product.js\n```\n\nYou can reference these output files in your Shopify liquid templates.\n\n### Commands\n\n```\nnpx assetessa-shopify buid\n```\n\nBuilds the `dist` folder with Webpack and places it in the root of your project and will open the preview in your browser.\n\n```\nnpx assetessa-shopify watch\n```\n\nBuilds the `dist` folder with Webpack and places it in the root of your project and will open the preview in your browser. It will then continue to watch your files for updates. Note: This will not watch your `.liquid` files, it will only watch any javascript webpack entries (e.g `application.js`). To see live updates reflected, you will need to run this in conjunction with Shopifies Themekit commands. Here is an example `package.json` excerpt:\n\n```\n  \"scripts\": {\n    \"test\": \"echo \\\"Error: no test specified\\\" \u0026\u0026 exit 1\",\n    \"webpack\": \"npx assetessa-shopify watch\",\n    \"watch\": \"npm run theme-watch \u0026 npm run webpack\",\n    \"theme-watch\": \"cd dist \u0026\u0026 theme watch\",\n    \"theme-deploy\": \"cd dist \u0026\u0026 theme deploy\"\n  },\n```\n\nIn this example, when you run `npm run watch` the theme watcher will start and webpack will crunch your assets into the `dist` and open up a browser window. The correct styles may not show up on the initial load, but when you begin making updates to the files the browser window will begin reloading with the correct styles displaying.\n\n### Questions?\n\nIf you have any questions on the usage of the package, please contact benjamin@famousstick.com.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenjaminbwright%2Fassetessa-shopify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenjaminbwright%2Fassetessa-shopify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenjaminbwright%2Fassetessa-shopify/lists"}