Skip to content

Commit 7c0f73f

Browse files
author
Sebastian Schürmann
committed
chore(root): renamed the project to banira
* lots of other vanillin named npm * banira is jap. for vanilla
1 parent 0cdbb8d commit 7c0f73f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+550
-103
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ test:
1515
npm test -ws
1616

1717
docs:
18-
npx typedoc --options ./packages/vanillin/typedoc.json --tsconfig ./packages/vanillin/tsconfig.json
18+
npx typedoc --options ./packages/banira/typedoc.json --tsconfig ./packages/banira/tsconfig.json
1919

2020
lint:
2121
npx eslint "packages/**/*.ts"

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Vanillin.js
1+
# banira.js
22

33
!!! WARNING: This is a work in progress. Please use at your own risk.
44

5-
Vanillin.js is an open-source toolchain designed for the development of web components using vanilla JavaScript. It simplifies the process by eliminating the need for bundlers and frameworks, focusing instead on modern CSS and web standards.
5+
banira.js is an open-source toolchain designed for the development of web components using vanilla JavaScript. It simplifies the process by eliminating the need for bundlers and frameworks, focusing instead on modern CSS and web standards.
66

77
## Features
88

@@ -17,9 +17,9 @@ Vanillin.js is an open-source toolchain designed for the development of web comp
1717

1818
```bash
1919
# Install the CLI globally
20-
npm install -g @vanillin/cli
20+
npm install -g @banira/cli
2121

22-
vanillin build
22+
banira build
2323
```
2424

2525
## Component Development
@@ -49,10 +49,10 @@ customElements.define('my-circle', MyCircle);
4949

5050
## Testing
5151

52-
Vanillin provides powerful testing utilities:
52+
banira provides powerful testing utilities:
5353

5454
```typescript
55-
import { TestHelper } from 'vanillin';
55+
import { TestHelper } from 'banira';
5656

5757
describe('MyComponent', () => {
5858
let context;
@@ -74,19 +74,19 @@ describe('MyComponent', () => {
7474
### Component Commands
7575
```bash
7676
# Create a new component
77-
vanillin create <name>
77+
banira create <name>
7878

7979
# Build components
80-
vanillin build [options] <files...>
80+
banira build [options] <files...>
8181

8282
# Start development server
83-
vanillin serve [options]
83+
banira serve [options]
8484
```
8585

8686
### Compiler Options
8787
```bash
8888
# Compile TypeScript files
89-
vanillin compile [options] <files...>
89+
banira compile [options] <files...>
9090

9191
Options:
9292
-p, --project <path> Path to tsconfig.json
@@ -101,7 +101,7 @@ Options:
101101

102102
```bash
103103
# Clone the repository
104-
git clone https://github.com/yourusername/Vanillin.js.git
104+
git clone https://github.com/yourusername/banira.js.git
105105

106106
# Install dependencies
107107
make bootstrap
@@ -115,8 +115,8 @@ make clean
115115

116116
### Project Structure
117117

118-
- `packages/vanillin`: Core library with compiler and testing utilities
119-
- `packages/vanillin-cli`: Command-line interface
118+
- `packages/banira`: Core library with compiler and testing utilities
119+
- `packages/banira-cli`: Command-line interface
120120
- `packages/component-my-circle`: Example component implementation
121121

122122
### Development Workflow

0 commit comments

Comments
 (0)