@tacdaed/fragments 1.0.0-beta.1 → 1.0.0-beta.2
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 +1 -17
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -18,23 +18,7 @@ npm install @tacdaed/fragments
|
|
|
18
18
|
|
|
19
19
|
## Setup
|
|
20
20
|
|
|
21
|
-
###
|
|
22
|
-
|
|
23
|
-
Import the library module in your app module:
|
|
24
|
-
|
|
25
|
-
```ts
|
|
26
|
-
import { FragmentsModule } from 'fragments';
|
|
27
|
-
|
|
28
|
-
@NgModule({
|
|
29
|
-
imports: [
|
|
30
|
-
FragmentsModule,
|
|
31
|
-
// ...other modules
|
|
32
|
-
],
|
|
33
|
-
})
|
|
34
|
-
export class AppModule {}
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
### 2. Add Styles to `angular.json`
|
|
21
|
+
### Add Styles to `angular.json`
|
|
38
22
|
|
|
39
23
|
To enable syntax highlighting, you must import a Highlight.js theme in your app’s `angular.json`:
|
|
40
24
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tacdaed/fragments",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "20.2.
|
|
6
|
-
"@angular/core": "20.2.
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
5
|
+
"@angular/common": "^20.2.0",
|
|
6
|
+
"@angular/core": "^20.2.0",
|
|
7
|
+
"rxjs": "^7.8.0",
|
|
8
|
+
"@fortawesome/fontawesome-free": "^6.5.0",
|
|
9
|
+
"animejs": "^4.1.0",
|
|
10
|
+
"bootstrap": "^5.3.0",
|
|
11
|
+
"highlight.js": "^11.11.0"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"tslib": "2.3.0",
|