@pattern-stack/frontend-patterns 0.0.1 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/dist/index.es.js +1 -1
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,8 +35,8 @@ app.addRoutes("/reports", ReportsRoutes)
|
|
|
35
35
|
### Installation
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
|
-
# Install from
|
|
39
|
-
npm install
|
|
38
|
+
# Install from NPM
|
|
39
|
+
npm install @pattern-stack/frontend-patterns
|
|
40
40
|
|
|
41
41
|
# Or for local development/testing
|
|
42
42
|
npm install file:../path/to/frontend-patterns
|
|
@@ -223,10 +223,10 @@ Check out the `examples/` directory for complete app implementations:
|
|
|
223
223
|
|
|
224
224
|
```bash
|
|
225
225
|
# Pin to specific version for stability
|
|
226
|
-
|
|
226
|
+
npm install @pattern-stack/frontend-patterns@1.2.0
|
|
227
227
|
|
|
228
228
|
# Use latest for new development
|
|
229
|
-
|
|
229
|
+
npm install @pattern-stack/frontend-patterns@latest
|
|
230
230
|
```
|
|
231
231
|
|
|
232
232
|
### Version History
|
|
@@ -261,8 +261,8 @@ mkdir test-app && cd test-app
|
|
|
261
261
|
npm init -y
|
|
262
262
|
npm install react react-dom @types/react @types/react-dom
|
|
263
263
|
|
|
264
|
-
# 3. Install the
|
|
265
|
-
npm install
|
|
264
|
+
# 3. Install the template
|
|
265
|
+
npm install @pattern-stack/frontend-patterns
|
|
266
266
|
|
|
267
267
|
# 4. Create test app
|
|
268
268
|
cat > main.tsx << 'EOF'
|
package/dist/index.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './
|
|
1
|
+
import './frontend-patterns.css';
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4
4
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@pattern-stack/frontend-patterns",
|
|
3
3
|
"description": "Production-ready React frontend template with atomic architecture patterns. Build ultra-lean applications by importing shared UI foundation patterns.",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.4",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"react",
|
|
8
8
|
"typescript",
|